Skip to content

Commit 5a610ca

Browse files
[pre-commit.ci] pre-commit autoupdate
updates: - [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.0](PyCQA/docformatter@v1.5.1...v1.6.0) - [github.com/asottile/blacken-docs: v1.12.1 → 1.13.0](adamchainz/blacken-docs@v1.12.1...1.13.0) - [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.2.0](pre-commit/mirrors-mypy@v0.991...v1.2.0)
1 parent 87033dd commit 5a610ca

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.pre-commit-config.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,27 +25,27 @@ repos:
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.0
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.
@@ -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.2.0
122122
hooks:
123123
- id: mypy

0 commit comments

Comments
 (0)