diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 80d9e8d2..0fe85fb3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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/ diff --git a/README.md b/README.md index adb996a7..9741b056 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/history.rst b/docs/history.rst index 0c8399e2..4d33f25b 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -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 diff --git a/docs/pre-commit.rst b/docs/pre-commit.rst index 65418c87..ae9dc3a9 100644 --- a/docs/pre-commit.rst +++ b/docs/pre-commit.rst @@ -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] @@ -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 @@ -55,7 +55,7 @@ To pass command line arguments, use the `pre-commit args