diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4f89320b05..de2babfc04 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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.11.0 hooks: - id: black exclude: ^fuzz/generated/ - repo: https://github.com/asottile/pyupgrade - rev: v3.20.0 + rev: v3.21.2 hooks: - id: pyupgrade exclude: ^fuzz/generated/ @@ -35,7 +35,7 @@ repos: exclude: ^fuzz/generated/|bandit\.conf$ - repo: https://github.com/PyCQA/bandit - rev: 1.8.6 + rev: 1.9.2 hooks: - id: bandit exclude: ^fuzz/generated/ @@ -47,7 +47,7 @@ repos: - id: gitlint - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.17.1 + rev: v1.19.0 hooks: - id: mypy additional_dependencies: diff --git a/dev-requirements.txt b/dev-requirements.txt index 64de1a9dcb..4003520980 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,19 +1,19 @@ bandit; python_version <= "3.8" -bandit==1.8.6; python_version > "3.8" -black==25.1.0; python_version > "3.8" +bandit==1.9.2; python_version > "3.8" +black==25.11.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" +pre-commit==4.5.0; python_version > "3.8" codespell==v2.4.1 flake8; python_version < "3.8" flake8==7.3.0; python_version >= "3.8" gitlint==v0.19.1 interrogate jsonschema -mypy==v1.17.1 +mypy==v1.19.0 playwright pytest>=7.2.0 pytest-asyncio