Skip to content

Commit 35ae632

Browse files
committed
v1.8.3
1 parent 3d49de1 commit 35ae632

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/publish_to_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
environment:
3838
name: pypi
39-
url: https://pypi.org/p/narwhals # Replace <package-name> with your PyPI project name
39+
url: https://pypi.org/p/nbqa # Replace <package-name> with your PyPI project name
4040
permissions:
4141
id-token: write # IMPORTANT: mandatory for trusted publishing
4242

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Here's an example of how to set up some pre-commit hooks: put this in your `.pre
135135

136136
```yaml
137137
- repo: https://github.com/nbQA-dev/nbQA
138-
rev: 1.8.2
138+
rev: 1.8.3
139139
hooks:
140140
- id: nbqa-black
141141
additional_dependencies: [jupytext] # optional, only if you're using Jupytext

docs/history.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Changelog
33
=========
44

5-
1.8.2 (2024-03-03)
5+
1.8.3 (2024-03-03)
66
~~~~~~~~~~~~~~~~~~
77
Compatibility with latest Ruff.
88

docs/pre-commit.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Here's an example of what you could include in your ``.pre-commit-config.yaml``
1313
1414
repos:
1515
- repo: https://github.com/nbQA-dev/nbQA
16-
rev: 1.8.2
16+
rev: 1.8.3
1717
hooks:
1818
- id: nbqa-black
1919
additional_dependencies: [black==20.8b1]
@@ -35,7 +35,7 @@ If you have your own custom tool (e.g. ``customtool``) for which we currently do
3535
.. code-block:: yaml
3636
3737
- repo: https://github.com/nbQA-dev/nbQA
38-
rev: 1.8.2
38+
rev: 1.8.3
3939
hooks:
4040
- id: nbqa
4141
entry: nbqa customtool
@@ -55,7 +55,7 @@ To pass command line arguments, use the `pre-commit args <https://pre-commit.com
5555
5656
repos:
5757
- repo: https://github.com/nbQA-dev/nbQA
58-
rev: 1.8.2
58+
rev: 1.8.3
5959
hooks:
6060
- id: nbqa-pyupgrade
6161
args: [--py38-plus]

nbqa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Attributes used by docs / packaging."""
22

3-
__version__ = "1.8.2"
3+
__version__ = "1.8.3"

0 commit comments

Comments
 (0)