From b417db8bf7229967470de1bed4f9cc0dc8454305 Mon Sep 17 00:00:00 2001 From: cyschneck <22159116+cyschneck@users.noreply.github.com> Date: Tue, 23 Apr 2024 15:25:48 -0600 Subject: [PATCH 1/3] update hook versions --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7e8bcf90..df1554f7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,12 +1,12 @@ 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 +19,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] From 4d5882850916fdcea3305efab73c010b2d6a6b0a Mon Sep 17 00:00:00 2001 From: cyschneck <22159116+cyschneck@users.noreply.github.com> Date: Wed, 24 Apr 2024 11:53:08 -0600 Subject: [PATCH 2/3] autoupdate pre-commit --- .pre-commit-config.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index df1554f7..274c5e9a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,7 @@ +ci: + autofix_prs: false + autoupdate_schedule: monthly + repos: - repo: https://github.com/google/yapf # To format the code to conform YAPF rev: v0.40.2 From 5bfcb7f17756f01a6767f8ea0a3789c898acc6b1 Mon Sep 17 00:00:00 2001 From: cyschneck <22159116+cyschneck@users.noreply.github.com> Date: Wed, 24 Apr 2024 12:03:22 -0600 Subject: [PATCH 3/3] update release-notes.rst --- docs/release-notes.rst | 7 +++++++ 1 file changed, 7 insertions(+) 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) ---------------------------