File tree Expand file tree Collapse file tree 5 files changed +10
-0
lines changed
Expand file tree Collapse file tree 5 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 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