Skip to content

Commit

Permalink
v1.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Mar 26, 2024
1 parent a56fdc5 commit 15ef9f3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 16 deletions.
11 changes: 0 additions & 11 deletions .pre-commit-config.yaml
Expand Up @@ -16,11 +16,6 @@ repos:
rev: 24.3.0
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.8
hooks:
- id: prettier
exclude: ^README\.md$
- repo: https://github.com/PyCQA/pylint
rev: v3.1.0
hooks:
Expand All @@ -42,12 +37,6 @@ repos:
hooks:
- id: pydocstyle
files: ^nbqa/
- repo: https://github.com/econchick/interrogate
rev: 1.5.0
hooks:
- id: interrogate
args: [-v, --fail-under=100]
files: ^nbqa/
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.9.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion README.md
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.8.4
rev: 1.8.5
hooks:
- id: nbqa-black
additional_dependencies: [jupytext] # optional, only if you're using Jupytext
Expand Down
4 changes: 4 additions & 0 deletions docs/history.rst
Expand Up @@ -2,6 +2,10 @@
Changelog
=========

1.8.5 (2024-03-26)
~~~~~~~~~~~~~~~~~~
Update tests for ruff compat.

1.8.4 (2024-03-07)
~~~~~~~~~~~~~~~~~~
Fixed "ruff format" regression.
Expand Down
6 changes: 3 additions & 3 deletions docs/pre-commit.rst
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.8.4
rev: 1.8.5
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.8.4
rev: 1.8.5
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.8.4
rev: 1.8.5
hooks:
- id: nbqa-pyupgrade
args: [--py38-plus]
Expand Down
2 changes: 1 addition & 1 deletion nbqa/__init__.py
@@ -1,3 +1,3 @@
"""Attributes used by docs / packaging."""

__version__ = "1.8.4"
__version__ = "1.8.5"

0 comments on commit 15ef9f3

Please sign in to comment.