diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 68b3ce1..263a5ae 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -11,19 +11,19 @@ repos: # Sorts Python imports alphabetically and by section with `isort`. - repo: https://github.com/pycqa/isort - rev: 5.13.2 + rev: 6.0.0 hooks: - id: isort args: [--profile, black, --settings-path, pyproject.toml] - repo: https://github.com/psf/black - rev: 24.10.0 + rev: 25.1.0 hooks: - id: black # Checks for spelling errors - repo: https://github.com/codespell-project/codespell - rev: v2.4.0 + rev: v2.4.1 hooks: - id: codespell args: [--toml, pyproject.toml, --skip="CHANGELOG.md"] @@ -43,7 +43,7 @@ repos: # flake8-functions checks functions quality: https://pypi.org/project/flake8-functions/ # flake8-bugbear detects some common bugs: https://github.com/PyCQA/flake8-bugbear - repo: https://github.com/pyCQA/flake8 - rev: 7.1.1 + rev: 7.1.2 hooks: - id: flake8 args: [--config, .flake8, --verbose, reproschema]