Skip to content

Commit

Permalink
1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Nov 25, 2023
1 parent 5125513 commit 5a8b3fa
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ repos:
args: [-v, --fail-under=100]
files: ^nbqa/
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.7.0
rev: v1.7.1
hooks:
- id: mypy
exclude: ^docs/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Here's an example of how to set up some pre-commit hooks: put this in your `.pre

```yaml
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.7.0
rev: 1.7.1
hooks:
- id: nbqa-black
additional_dependencies: [jupytext] # optional, only if you're using Jupytext
Expand Down
5 changes: 5 additions & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog
=========

1.7.1 (2023-04-02)
~~~~~~~~~~~~~~~~~~
Silenced ``autopep8`` deprecation warning which users couldn't
do anything about.

1.7.0 (2023-04-02)
~~~~~~~~~~~~~~~~~~
Added ``autopep8`` as runtime dependency. This is used
Expand Down
6 changes: 3 additions & 3 deletions docs/pre-commit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Here's an example of what you could include in your ``.pre-commit-config.yaml``
repos:
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.7.0
rev: 1.7.1
hooks:
- id: nbqa-black
additional_dependencies: [black==20.8b1]
Expand All @@ -35,7 +35,7 @@ If you have your own custom tool (e.g. ``customtool``) for which we currently do
.. code-block:: yaml
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.7.0
rev: 1.7.1
hooks:
- id: nbqa
entry: nbqa customtool
Expand All @@ -55,7 +55,7 @@ To pass command line arguments, use the `pre-commit args <https://pre-commit.com
repos:
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.7.0
rev: 1.7.1
hooks:
- id: nbqa-pyupgrade
args: [--py38-plus]
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 @@
"""Attributes used by docs / packaging."""

__version__ = "1.7.0"
__version__ = "1.7.1"

0 comments on commit 5a8b3fa

Please sign in to comment.