From 43c0a5035778d484e94244ef9afdee4952901d80 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 16:29:48 +0000 Subject: [PATCH 1/4] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.14.3 → v0.14.7](https://github.com/astral-sh/ruff-pre-commit/compare/v0.14.3...v0.14.7) - [github.com/scientific-python/cookie: 2025.10.20 → 2025.11.21](https://github.com/scientific-python/cookie/compare/2025.10.20...2025.11.21) - [github.com/woodruffw/zizmor-pre-commit: v1.16.2 → v1.18.0](https://github.com/woodruffw/zizmor-pre-commit/compare/v1.16.2...v1.18.0) - [github.com/sphinx-contrib/sphinx-lint: v1.0.1 → v1.0.2](https://github.com/sphinx-contrib/sphinx-lint/compare/v1.0.1...v1.0.2) --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9f45c29c0..ed7042799 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -55,13 +55,13 @@ repos: # Enforce that all noqa annotations always occur with specific codes. - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.3" + rev: "v0.14.7" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] - repo: https://github.com/scientific-python/cookie - rev: 2025.10.20 + rev: 2025.11.21 hooks: - id: sp-repo-review @@ -105,12 +105,12 @@ repos: exclude: "extern/" - repo: https://github.com/woodruffw/zizmor-pre-commit - rev: v1.16.2 + rev: v1.18.0 hooks: - id: zizmor - repo: https://github.com/sphinx-contrib/sphinx-lint - rev: v1.0.1 + rev: v1.0.2 hooks: - id: sphinx-lint exclude: "(docs/_build/|photutils/extern/)" From f6897d1c74c4b76f6a88caf3a62b5e149f55ca9a Mon Sep 17 00:00:00 2001 From: Larry Bradley Date: Mon, 1 Dec 2025 14:41:25 -0500 Subject: [PATCH 2/4] Enable cooldown for dependabot --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 05e46bd3d..c7a119da3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,6 +8,8 @@ updates: directory: ".github/workflows/" schedule: interval: "monthly" + cooldown: + default-days: 7 groups: actions: patterns: From 5c66818132e57fcaa2ad768730d3e547ce63354a Mon Sep 17 00:00:00 2001 From: Larry Bradley Date: Mon, 1 Dec 2025 14:41:35 -0500 Subject: [PATCH 3/4] Add pytest LOG_LEVEL --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index dcb2983b3..2af7efa08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -129,6 +129,7 @@ addopts = [ '--strict-config', '--strict-markers', ] +log_level = 'INFO' log_cli_level = 'INFO' xfail_strict = true remote_data_strict = true From 96d4f14bf50d36931c8b467031d4c59017427848 Mon Sep 17 00:00:00 2001 From: Larry Bradley Date: Mon, 1 Dec 2025 14:42:18 -0500 Subject: [PATCH 4/4] Add repo-review ignores --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2af7efa08..cb1f3b383 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -196,6 +196,8 @@ ignore = [ 'PC140', # ignore using mypy in pre-commit 'PC180', # ignore using prettier in pre-commit 'PC901', # ignore using custom pre-commit update message + 'PC902', # ignore custom pre-commit CI autofix message + 'PP006', # ignore missing dependency-groups in pyproject.toml 'PY005', # ignore having a tests/ folder ]