Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ repos:
# args for cut and paste: interrogate -vv -i -I -M -C -n -p -f 60.0

- repo: https://github.com/pycqa/isort
rev: 6.0.1
rev: 7.0.0
hooks:
- id: isort
stages: [pre-commit, pre-merge-commit]
exclude: ^fuzz/generated/

- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.1.0
rev: 25.9.0
hooks:
- id: black
exclude: ^fuzz/generated/

- repo: https://github.com/asottile/pyupgrade
rev: v3.20.0
rev: v3.21.0
hooks:
- id: pyupgrade
exclude: ^fuzz/generated/
Expand All @@ -47,7 +47,7 @@ repos:
- id: gitlint

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.17.1
rev: v1.18.2
hooks:
- id: mypy
additional_dependencies:
Expand Down
6 changes: 3 additions & 3 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
bandit; python_version <= "3.8"
bandit==1.8.6; python_version > "3.8"
black==25.1.0; python_version > "3.8"
black==25.9.0; python_version > "3.8"
black; python_version <= "3.8"
build
isort; python_version < "3.8"
isort==6.0.1; python_version >= "3.8"
isort==7.0.0; python_version >= "3.8"
pre-commit; python_version <= "3.8"
pre-commit==4.3.0; python_version > "3.8"
codespell==v2.4.1
Expand All @@ -13,7 +13,7 @@ flake8==7.3.0; python_version >= "3.8"
gitlint==v0.19.1
interrogate
jsonschema
mypy==v1.17.1
mypy==v1.18.2
playwright
pytest>=7.2.0
pytest-asyncio
Expand Down