File tree Expand file tree Collapse file tree 5 files changed +14
-4
lines changed
Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Original file line number Diff line number Diff 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
8686ci :
8787 autofix_prs : false
88+ autofix_commit_msg : " style: pre-commit fixes"
8889 autoupdate_schedule : monthly
Original file line number Diff line number Diff 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 ]
5459requires = [" setuptools" ,
5560 " setuptools_scm" ,
@@ -80,6 +85,7 @@ use_extension_helpers = "true"
8085[tool .pytest .ini_options ]
8186minversion = " 6"
8287log_cli_level = " INFO"
88+ log_level = " INFO"
8389xfail_strict = true
8490testpaths = [' "reproject"' , ' "docs"' ]
8591norecursedirs = [" build" , " docs/_build" ]
Original file line number Diff line number Diff line change 22"""
33Astropy affiliated package for image reprojection (resampling).
44"""
5+
56from .adaptive import reproject_adaptive # noqa
67from .healpix import reproject_from_healpix , reproject_to_healpix # noqa
78from .interpolation import reproject_interp # noqa
Original file line number Diff line number Diff line change 22"""
33Routines to carry out reprojection by interpolation.
44"""
5+
56from .high_level import * # noqa
Original file line number Diff line number Diff line change 22"""
33Routines to compute pixel overlap areas.
44"""
5+
56from .high_level import * # noqa
You can’t perform that action at this time.
0 commit comments