diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1bee819..ceb313d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.2.0 + rev: v4.4.0 hooks: - id: check-added-large-files # prevents adding large files - id: detect-private-key # detects private keys @@ -9,12 +9,12 @@ repos: - id: no-commit-to-branch # prevents committing to protected branches - id: trailing-whitespace # prevents trailing whitespace - repo: https://github.com/psf/black - rev: 22.3.0 + rev: 23.9.1 hooks: - id: black language_version: python3.9 exclude: 'pipelines\/\{\{cookiecutter\.project_name\}\}.*' - repo: https://github.com/PyCQA/flake8 - rev: 4.0.1 + rev: 6.1.0 hooks: - id: flake8