diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6fc071d..8cdff38 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,18 +1,18 @@ repos: - repo: https://github.com/PyCQA/autoflake - rev: v2.0.0 + rev: v2.3.1 hooks: - id: autoflake args: ['--in-place', '--remove-all-unused-imports', '--remove-unused-variable'] - repo: https://github.com/pycqa/isort - rev: 5.11.4 + rev: 6.0.0 hooks: - id: isort args: ["--profile", "black", "--filter-files"] - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v5.0.0 hooks: - id: trailing-whitespace exclude: ^docs/.*|.*.md @@ -20,7 +20,7 @@ repos: exclude: ^docs/.*|.*.md - repo: https://github.com/psf/black - rev: 22.12.0 + rev: 24.10.0 hooks: - id: black language_version: python3