diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3518d8b..256c588 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,21 +9,21 @@ repos: # Automatically sort imports with isort - repo: https://github.com/PyCQA/isort - rev: 6.0.0 + rev: 8.0.1 hooks: - id: isort additional_dependencies: [toml] # Automatic source code formatting with Black -- repo: https://github.com/psf/black - rev: 25.1.0 +- repo: https://github.com/psf/black-pre-commit-mirror + rev: 26.1.0 hooks: - id: black args: [--safe, --quiet] # Enforce style with Flake8 - repo: https://github.com/PyCQA/flake8 - rev: 7.1.2 + rev: 7.3.0 hooks: - id: flake8 # Exclude docstring checks, ignore E203 (see https://github.com/PyCQA/pycodestyle/issues/373) @@ -32,7 +32,7 @@ repos: # Syntax check with pre-commit out-of-the-box hooks - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: end-of-file-fixer - id: requirements-txt-fixer