diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7e8bcf90..274c5e9a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,12 +1,16 @@ +ci: + autofix_prs: false + autoupdate_schedule: monthly + repos: - repo: https://github.com/google/yapf # To format the code to conform YAPF - rev: v0.33.0 + rev: v0.40.2 hooks: - id: yapf args: ['--in-place', '--recursive', '--style', 'google'] - repo: https://github.com/myint/docformatter # To format the doc strings to conform PEP257 - rev: v1.4 + rev: v1.7.5 hooks: - id: docformatter args: [--in-place] @@ -19,7 +23,7 @@ repos: - tomli - repo: https://github.com/pre-commit/pre-commit-hooks # Some common pre-commit hooks - rev: v3.4.0 + rev: v4.6.0 hooks: - id: check-yaml # Checks the syntax of .yaml files. args: [--allow-multiple-documents] diff --git a/docs/release-notes.rst b/docs/release-notes.rst index afdb5d51..f3eabe39 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -8,6 +8,13 @@ Release Notes ============= +vYYYY.MM.## (unreleased) +------------------------ +This release... + +Internal Changes +^^^^^^^^^^^^^^^^ +* Update and setup autoupdate for pre-commit hooks by `Cora Schneck`_ in (:pr:`604`) v2024.04.0 (April 23, 2024) ---------------------------