Skip to content

Commit 39d5049

Browse files
chore: update pre-commit config (#4736)
Co-authored-by: GitHub <[email protected]>
1 parent 0afa495 commit 39d5049

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.pre-commit-config.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repos:
99
# args for cut and paste: interrogate -vv -i -I -M -C -n -p -f 60.0
1010

1111
- repo: https://github.com/pycqa/isort
12-
rev: 5.13.2
12+
rev: 6.0.1
1313
hooks:
1414
- id: isort
1515
stages: [pre-commit, pre-merge-commit]
@@ -29,13 +29,13 @@ repos:
2929
args: ["--py38-plus"]
3030

3131
- repo: https://github.com/pycqa/flake8
32-
rev: 7.1.1
32+
rev: 7.1.2
3333
hooks:
3434
- id: flake8
3535
exclude: ^fuzz/generated/|bandit\.conf$
3636

3737
- repo: https://github.com/PyCQA/bandit
38-
rev: 1.8.0
38+
rev: 1.8.3
3939
hooks:
4040
- id: bandit
4141
exclude: ^fuzz/generated/
@@ -47,7 +47,7 @@ repos:
4747
- id: gitlint
4848

4949
- repo: https://github.com/pre-commit/mirrors-mypy
50-
rev: v1.14.1
50+
rev: v1.15.0
5151
hooks:
5252
- id: mypy
5353
additional_dependencies:
@@ -82,7 +82,7 @@ repos:
8282
)$
8383
8484
- repo: https://github.com/codespell-project/codespell
85-
rev: v1.16.0
85+
rev: v2.4.1
8686
hooks:
8787
- id: codespell
8888
name: codespell

dev-requirements.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
black==24.10.0; python_version > "3.8"
2-
black==24.8.0; python_version <= "3.8"
2+
black; python_version <= "3.8"
33
isort; python_version < "3.8"
4-
isort==5.13.2; python_version >= "3.8"
4+
isort==6.0.1; python_version >= "3.8"
55
pre-commit; python_version <= "3.8"
66
pre-commit==4.1.0; python_version > "3.8"
7-
codespell==1.16.0
7+
codespell==v2.4.1
88
flake8; python_version < "3.8"
9-
flake8==7.1.1; python_version >= "3.8"
10-
bandit==1.7.10; python_version <= "3.8"
11-
bandit==1.8.0; python_version > "3.8"
9+
flake8==7.1.2; python_version >= "3.8"
10+
bandit; python_version <= "3.8"
11+
bandit==1.8.3; python_version > "3.8"
1212
gitlint==v0.19.1
1313
interrogate
14-
mypy==v1.14.1
14+
mypy==v1.15.0
1515
pytest>=7.2.0
1616
pytest-xdist
1717
pytest-cov

0 commit comments

Comments
 (0)