Skip to content

Commit ff43d3f

Browse files
authored
Merge pull request #577 from astropy/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents e1eed33 + 84c2b78 commit ff43d3f

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@ repos:
5252
exclude: ".*(data.*|extern.*|cextern)$"
5353

5454
- repo: https://github.com/psf/black-pre-commit-mirror
55-
rev: 25.9.0
55+
rev: 26.1.0
5656
hooks:
5757
- id: black
5858

5959
- repo: https://github.com/numpy/numpydoc
60-
rev: v1.9.0
60+
rev: v1.10.0
6161
hooks:
6262
- id: numpydoc-validation
6363
files: ".*(high_level|mosaicking).*$"
6464
exclude: ".*(tests.*)$"
6565

6666
- repo: https://github.com/scientific-python/cookie
67-
rev: 2025.10.20
67+
rev: 2025.11.21
6868
hooks:
6969
- id: sp-repo-review
7070

@@ -78,11 +78,12 @@ repos:
7878
exclude: '.*\.(asdf)$'
7979

8080
- repo: https://github.com/astral-sh/ruff-pre-commit
81-
rev: "v0.14.3"
81+
rev: "v0.15.4"
8282
hooks:
8383
- id: ruff-check
8484
args: ["--fix", "--show-fixes"]
8585

8686
ci:
8787
autofix_prs: false
88+
autofix_commit_msg: "style: pre-commit fixes"
8889
autoupdate_schedule: monthly

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ docs = [
5050
"tqdm",
5151
]
5252

53+
[dependency-groups]
54+
dev = [
55+
{include-group = "test"},
56+
]
57+
5358
[build-system]
5459
requires = ["setuptools",
5560
"setuptools_scm",
@@ -80,6 +85,7 @@ use_extension_helpers = "true"
8085
[tool.pytest.ini_options]
8186
minversion = "6"
8287
log_cli_level = "INFO"
88+
log_level = "INFO"
8389
xfail_strict = true
8490
testpaths = ['"reproject"', '"docs"']
8591
norecursedirs = ["build", "docs/_build"]

reproject/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"""
33
Astropy affiliated package for image reprojection (resampling).
44
"""
5+
56
from .adaptive import reproject_adaptive # noqa
67
from .healpix import reproject_from_healpix, reproject_to_healpix # noqa
78
from .interpolation import reproject_interp # noqa

reproject/interpolation/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
"""
33
Routines to carry out reprojection by interpolation.
44
"""
5+
56
from .high_level import * # noqa

reproject/spherical_intersect/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
"""
33
Routines to compute pixel overlap areas.
44
"""
5+
56
from .high_level import * # noqa

0 commit comments

Comments
 (0)