Skip to content

Commit 0506549

Browse files
committed
v1.8.7
1 parent e7027c1 commit 0506549

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

.github/workflows/dispatch_pre-commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
runPreCommit:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
with:
1212
repository: ${{github.event.client_payload.pull_request.head.repo.full_name}}
1313
ref: ${{github.event.client_payload.pull_request.head.ref}}
1414
token: ${{ secrets.ACTION_TRIGGER_TOKEN }}
1515
- name: Cache multiple paths
16-
uses: actions/cache@v2
16+
uses: actions/cache@v4
1717
env:
1818
# Increase this value to reset cache if requirements.txt has not changed
1919
CACHE_NUMBER: 0
@@ -25,7 +25,7 @@ jobs:
2525
~/.cache/pre-commit
2626
key: ${{ runner.os }}-build-${{ matrix.python-version }}-${{
2727
hashFiles('.pre-commit-config.yaml') }}
28-
- uses: actions/setup-python@v2
28+
- uses: actions/setup-python@v4
2929
with:
3030
python-version: 3.8
3131
- name: install-pre-commit

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414

1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
18-
- uses: actions/setup-python@v2
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-python@v4
1919
with:
2020
python-version: 3.8 # Same as RTD
2121
- name: Cache multiple paths
22-
uses: actions/cache@v2
22+
uses: actions/cache@v4
2323
with:
2424
path: ~/.cache/pip
2525
key: docs
@@ -29,7 +29,7 @@ jobs:
2929
run: tox -e ${{ matrix.tox-env-name }}
3030
- name: Upload docs artifact
3131
if: ${{ matrix.tox-env-name }} == "docs"
32-
uses: actions/upload-artifact@v2
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: nbqa-docs
3535
path: docs/_build/html

.github/workflows/publish_to_pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build a binary wheel and a source tarball
2323
run: python3 -m build
2424
- name: Store the distribution packages
25-
uses: actions/upload-artifact@v3
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: python-package-distributions
2828
path: dist/
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Download all the dists
45-
uses: actions/download-artifact@v3
45+
uses: actions/download-artifact@v4
4646
with:
4747
name: python-package-distributions
4848
path: dist/
@@ -63,12 +63,12 @@ jobs:
6363

6464
steps:
6565
- name: Download all the dists
66-
uses: actions/download-artifact@v3
66+
uses: actions/download-artifact@v4
6767
with:
6868
name: python-package-distributions
6969
path: dist/
7070
- name: Sign the dists with Sigstore
71-
uses: sigstore/gh-action-sigstore-python@v1.2.3
71+
uses: sigstore/gh-action-sigstore-python@v3.0.0
7272
with:
7373
inputs: >-
7474
./dist/*.tar.gz

.github/workflows/tox.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414

1515
runs-on: ${{ matrix.os }}
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- uses: actions/setup-python@v4
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Cache multiple paths
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: |
2525
~/.cache/pip

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.6
138+
rev: 1.8.7
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.6 (2024-08-05)
5+
1.8.7 (2024-08-05)
66
~~~~~~~~~~~~~~~~~~
77
Ruff/pylint compat.
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.6
16+
rev: 1.8.7
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.6
38+
rev: 1.8.7
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.6
58+
rev: 1.8.7
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.6"
3+
__version__ = "1.8.7"

0 commit comments

Comments
 (0)