diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7618671..264b896 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,7 @@ default_language_version: repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v6.0.0 hooks: # list of supported hooks: https://pre-commit.com/hooks.html - id: trailing-whitespace @@ -17,29 +17,29 @@ repos: - id: check-added-large-files # python code formatting - - repo: https://github.com/psf/black - rev: 23.12.1 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 26.1.0 hooks: - id: black args: [--line-length, "120"] # python import sorting - repo: https://github.com/PyCQA/isort - rev: 5.13.2 + rev: 7.0.0 hooks: - id: isort args: ["--profile", "black", "--filter-files"] # python upgrading syntax to newer version - repo: https://github.com/asottile/pyupgrade - rev: v3.15.0 + rev: v3.21.2 hooks: - id: pyupgrade args: [--py38-plus] # python check (PEP8), programming errors and code complexity - repo: https://github.com/PyCQA/flake8 - rev: 7.0.0 + rev: 7.3.0 hooks: - id: flake8 args: @@ -54,6 +54,6 @@ repos: # pylint - repo: https://github.com/pycqa/pylint - rev: v3.0.3 + rev: v4.0.4 hooks: - id: pylint