diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 88b2c09..5d9eaff 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ fail_fast: true repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v5.0.0 hooks: - id: check-ast - id: check-json @@ -14,43 +14,43 @@ repos: - id: trailing-whitespace - repo: https://github.com/PyCQA/isort - rev: 5.13.2 + rev: 6.0.1 hooks: - id: isort args: ["--profile", "black"] - repo: https://github.com/asottile/pyupgrade - rev: v3.15.0 + rev: v3.19.1 hooks: - id: pyupgrade - repo: https://github.com/psf/black - rev: 24.1.1 + rev: 25.1.0 hooks: - id: black args: [--line-length=120] - repo: https://github.com/PyCQA/flake8 - rev: 7.0.0 + rev: 7.2.0 hooks: - id: flake8 args: [--max-line-length=120] - repo: https://github.com/PyCQA/bandit - rev: '1.7.7' + rev: '1.8.3' hooks: - id: bandit exclude: tests/ - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.1.15 + rev: v0.11.5 hooks: - id: ruff args: [--line-length=120] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.8.0 + rev: v1.15.0 hooks: - id: mypy additional_dependencies: [types-requests]