Skip to content

Commit

Permalink
v0.3.1 (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Oct 16, 2020
1 parent c962c0f commit 84091a9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Changelog
=========

0.3.1 (2020-10-16)
------------------

Fixed bug whereby `nbqa` was using the system (or virtual environment) Python, rather than
the Python used to install `nbqa`. This was causing issues when running `nbqa` outside of a
virtual environment.

0.3.0 (2020-10-12)
------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/pre-commit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and sort your imports using ``isort``, you could put the following in your ``.pr

repos:
- repo: 'https://github.com/nbQA-dev/nbQA'
rev: 0.3.0
rev: 0.3.1
hooks:
- id: nbqa
args:
Expand Down
2 changes: 1 addition & 1 deletion nbqa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Marco Gorelli"""
__email__ = "m.e.gorelli@gmail.com"
__version__ = "0.3.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.3.1

[flake8]
ignore = E203,E503,W503,W504
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/nbQA-dev/nbQA",
version="0.3.0",
version="0.3.1",
zip_safe=False,
)

0 comments on commit 84091a9

Please sign in to comment.