Skip to content

Commit

Permalink
V0.1.2 (#61)
Browse files Browse the repository at this point in the history
* fix v number

* v0.1.2 release
  • Loading branch information
MarcoGorelli committed Jul 17, 2020
1 parent 80ba1dc commit 9e861d6
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ junit
docs/_build
dist
.tox
build/
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include HISTORY.rst
include LICENSE
include README.rst

recursive-include tests *
recursive-exclude tests *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ Installation: nbQA has no dependencies, so as long as you have Python3.6+, you c
and it'll work without conflicting with any of your existing installs!

------------------------------
Supported third party packages
------------------------------

In theory, `nbqa` can adapt any Python code-quality tool to a Jupyter Notebook.

In practice, here are the tools I've actually tested:
Expand Down
2 changes: 1 addition & 1 deletion nbqa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__author__ = """Marco Gorelli"""
__email__ = "m.e.gorelli@gmail.com"
__version__ = "0.1.0"
__version__ = "0.1.2"
9 changes: 6 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
[bumpversion]
current_version = 0.1.2

[flake8]
ignore=E203,E503,W504
max-line-length=120
exclude=venv,.*
ignore = E203,E503,W504
max-line-length = 120
exclude = venv,.*
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
install_requires=requirements,
license="MIT license",
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
include_package_data=True,
keywords="nbqa",
name="nbqa",
Expand All @@ -43,6 +44,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/MarcoGorelli/nbQA",
version="0.1.1",
version="0.1.2",
zip_safe=False,
)

0 comments on commit 9e861d6

Please sign in to comment.