Skip to content

Commit 18bcb46

Browse files
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/asottile/pyupgrade: v3.3.1 → v3.4.0](asottile/pyupgrade@v3.3.1...v3.4.0) - [github.com/psf/black: 22.12.0 → 23.3.0](psf/black@22.12.0...23.3.0) - [github.com/PyCQA/isort: 5.11.4 → 5.12.0](PyCQA/isort@5.11.4...5.12.0) - [github.com/PyCQA/docformatter: v1.5.1 → v1.6.5](PyCQA/docformatter@v1.5.1...v1.6.5) - [github.com/asottile/blacken-docs: v1.12.1 → 1.13.0](adamchainz/blacken-docs@v1.12.1...1.13.0) - [github.com/asottile/dead: v1.5.0 → v1.5.1](asottile/dead@v1.5.0...v1.5.1) - [github.com/PyCQA/pylint: v2.15.9 → v3.0.0a6](pylint-dev/pylint@v2.15.9...v3.0.0a6) - [github.com/PyCQA/bandit: 1.7.4 → 1.7.5](PyCQA/bandit@1.7.4...1.7.5) - [github.com/PyCQA/pydocstyle: 6.2.2 → 6.3.0](PyCQA/pydocstyle@6.2.2...6.3.0) - [github.com/pre-commit/mirrors-mypy: v0.991 → v1.3.0](pre-commit/mirrors-mypy@v0.991...v1.3.0)
1 parent 87033dd commit 18bcb46

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.pre-commit-config.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,41 +19,41 @@ repos:
1919

2020
# Updating code to use modern python patterns where available.
2121
- repo: https://github.com/asottile/pyupgrade
22-
rev: v3.3.1
22+
rev: v3.4.0
2323
hooks:
2424
- id: pyupgrade
2525

2626
# General Project code formatter.
2727
- repo: https://github.com/psf/black
28-
rev: 22.12.0
28+
rev: 23.3.0
2929
hooks:
3030
- id: black
3131

3232
# Sorts python imports.
3333
- repo: https://github.com/PyCQA/isort
3434
# Note - on black update blacken-docs pin should also be updated.
35-
rev: 5.11.4
35+
rev: 5.12.0
3636
hooks:
3737
- id: isort
3838
args: ['--profile=black']
3939

4040
# Formats python docstrings.
4141
- repo: https://github.com/PyCQA/docformatter
42-
rev: v1.5.1
42+
rev: v1.6.5
4343
hooks:
4444
- id: docformatter
4545

4646
# Formats code-blocks in documentation.
4747
- repo: https://github.com/asottile/blacken-docs
48-
rev: v1.12.1
48+
rev: 1.13.0
4949
hooks:
5050
- id: blacken-docs
5151
# Note - on black update blacken-docs pin should also be updated.
5252
additional_dependencies: ['black==22.12.0']
5353

5454
# Used to detect unintentionally unused code.
5555
- repo: https://github.com/asottile/dead
56-
rev: v1.5.0
56+
rev: v1.5.1
5757
hooks:
5858
- id: dead
5959
args: [
@@ -76,7 +76,7 @@ repos:
7676

7777
# Lint code in pre-commit env, note: This ignores import checks.
7878
- repo: https://github.com/PyCQA/pylint
79-
rev: v2.15.9
79+
rev: v3.0.0a6
8080
hooks:
8181
# Pylint is also run from within pre-commit for CI purposes.
8282
- id: pylint
@@ -87,7 +87,7 @@ repos:
8787

8888
# Lint code for security flaws.
8989
- repo: https://github.com/PyCQA/bandit
90-
rev: 1.7.4
90+
rev: 1.7.5
9191
hooks:
9292
- id: bandit
9393
# Assert is used exclusively in pytest.
@@ -109,7 +109,7 @@ repos:
109109
# Lint docstrings.
110110
- repo: https://github.com/PyCQA/pydocstyle
111111
# Waiting for a 3.10 release on pypi
112-
rev: "6.2.2"
112+
rev: "6.3.0"
113113
hooks:
114114
- id: pydocstyle
115115
additional_dependencies:
@@ -118,6 +118,6 @@ repos:
118118

119119
# Static typehint linting.
120120
- repo: https://github.com/pre-commit/mirrors-mypy
121-
rev: v0.991
121+
rev: v1.3.0
122122
hooks:
123123
- id: mypy

0 commit comments

Comments
 (0)