diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0bef159..0deef7b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,13 +12,13 @@ ci: repos: - repo: https://github.com/psf/black - rev: 23.1.0 + rev: 24.1.1 hooks: - id: black language_version: python3.9 - repo: https://github.com/PyCQA/isort - rev: 5.12.0 + rev: 5.13.2 hooks: - id: isort # args: ["--profile", "black", "--filter-files"] @@ -27,20 +27,20 @@ repos: language_version: python3.9 - repo: https://github.com/PyCQA/flake8 - rev: 6.0.0 + rev: 7.0.0 hooks: - id: flake8 language_version: python3.9 - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.0.0 + rev: v1.8.0 hooks: - id: mypy exclude: ^tests/ args: [--disallow-untyped-defs, --disallow-untyped-calls, --check-untyped-defs] - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer