Skip to content

Commit ac8dfde

Browse files
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v5.0.0](pre-commit/pre-commit-hooks@v4.4.0...v5.0.0) - https://github.com/asottile/reorder_python_importshttps://github.com/asottile/reorder-python-imports - [github.com/asottile/reorder-python-imports: v3.9.0 → v3.14.0](asottile/reorder-python-imports@v3.9.0...v3.14.0) - [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v5.0.0](pre-commit/pre-commit-hooks@v4.4.0...v5.0.0) - [github.com/pre-commit/pygrep-hooks: v1.9.0 → v1.10.0](pre-commit/pygrep-hooks@v1.9.0...v1.10.0) - [github.com/asottile/blacken-docs: v1.12.1 → 1.19.1](adamchainz/blacken-docs@v1.12.1...1.19.1) - [github.com/psf/black: 22.12.0 → 25.1.0](psf/black@22.12.0...25.1.0) - [github.com/PyCQA/flake8: 5.0.4 → 7.1.1](PyCQA/flake8@5.0.4...7.1.1) - [github.com/PyCQA/doc8: v1.0.0 → v1.1.2](PyCQA/doc8@v1.0.0...v1.1.2) - [github.com/mgedmin/check-manifest: 0.49 → 0.50](mgedmin/check-manifest@0.49...0.50) - [github.com/PyCQA/doc8: v1.0.0 → v1.1.2](PyCQA/doc8@v1.0.0...v1.1.2) - [github.com/asottile/setup-cfg-fmt: v2.2.0 → v2.7.0](asottile/setup-cfg-fmt@v2.2.0...v2.7.0) - [github.com/econchick/interrogate: 1.5.0 → 1.7.0](econchick/interrogate@1.5.0...1.7.0) - [github.com/codespell-project/codespell: v2.2.2 → v2.4.1](codespell-project/codespell@v2.2.2...v2.4.1) - [github.com/asottile/pyupgrade: v3.3.1 → v3.19.1](asottile/pyupgrade@v3.3.1...v3.19.1)
1 parent e4dd275 commit ac8dfde

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.pre-commit-config.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.4.0
3+
rev: v5.0.0
44
hooks:
55
- id: check-merge-conflict
66
- id: debug-statements
77
- id: end-of-file-fixer
8-
- repo: https://github.com/asottile/reorder_python_imports
9-
rev: v3.9.0
8+
- repo: https://github.com/asottile/reorder-python-imports
9+
rev: v3.14.0
1010
hooks:
1111
- id: reorder-python-imports
1212
types: [python]
1313
- repo: https://github.com/pre-commit/pre-commit-hooks
14-
rev: v4.4.0
14+
rev: v5.0.0
1515
hooks:
1616
- id: check-added-large-files
1717
args: ['--maxkb=100']
@@ -27,7 +27,7 @@ repos:
2727
args: [--branch, main]
2828
- id: trailing-whitespace
2929
- repo: https://github.com/pre-commit/pygrep-hooks
30-
rev: v1.9.0
30+
rev: v1.10.0
3131
hooks:
3232
- id: python-check-blanket-noqa
3333
- id: python-check-mock-methods
@@ -39,18 +39,18 @@ repos:
3939
- id: rst-inline-touching-normal
4040
- id: text-unicode-replacement-char
4141
- repo: https://github.com/asottile/blacken-docs
42-
rev: v1.12.1
42+
rev: 1.19.1
4343
hooks:
4444
- id: blacken-docs
4545
additional_dependencies: [black==22.3.0]
4646
types: [rst]
4747
- repo: https://github.com/psf/black
48-
rev: 22.12.0
48+
rev: 25.1.0
4949
hooks:
5050
- id: black
5151
language_version: python3.10
5252
- repo: https://github.com/PyCQA/flake8
53-
rev: 5.0.4
53+
rev: 7.1.1
5454
hooks:
5555
- id: flake8
5656
types: [python]
@@ -71,7 +71,7 @@ repos:
7171
Pygments,
7272
]
7373
- repo: https://github.com/PyCQA/doc8
74-
rev: v1.0.0
74+
rev: v1.1.2
7575
hooks:
7676
- id: doc8
7777
- repo: meta
@@ -80,29 +80,29 @@ repos:
8080
- id: check-useless-excludes
8181
# - id: identity # Prints all files passed to pre-commits. Debugging.
8282
- repo: https://github.com/mgedmin/check-manifest
83-
rev: "0.49"
83+
rev: "0.50"
8484
hooks:
8585
- id: check-manifest
8686
- repo: https://github.com/PyCQA/doc8
87-
rev: v1.0.0
87+
rev: v1.1.2
8888
hooks:
8989
- id: doc8
9090
- repo: https://github.com/asottile/setup-cfg-fmt
91-
rev: v2.2.0
91+
rev: v2.7.0
9292
hooks:
9393
- id: setup-cfg-fmt
9494
- repo: https://github.com/econchick/interrogate
95-
rev: 1.5.0
95+
rev: 1.7.0
9696
hooks:
9797
- id: interrogate
9898
args: [-v, --fail-under=20]
9999
exclude: ^(tests|docs|setup\.py)
100100
- repo: https://github.com/codespell-project/codespell
101-
rev: v2.2.2
101+
rev: v2.4.1
102102
hooks:
103103
- id: codespell
104104
- repo: https://github.com/asottile/pyupgrade
105-
rev: v3.3.1
105+
rev: v3.19.1
106106
hooks:
107107
- id: pyupgrade
108108
args: [--py37-plus]

0 commit comments

Comments
 (0)