Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ updates:
directory: ".github/workflows/"
schedule:
interval: "monthly"
cooldown:
default-days: 7
groups:
actions:
patterns:
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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/)"
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ addopts = [
'--strict-config',
'--strict-markers',
]
log_level = 'INFO'
log_cli_level = 'INFO'
xfail_strict = true
remote_data_strict = true
Expand Down Expand Up @@ -195,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
]

Expand Down