Skip to content

Commit 84c2b78

Browse files
committed
Fix pre-commit
1 parent 7e40f79 commit 84c2b78

File tree

5 files changed

+10
-0
lines changed

5 files changed

+10
-0
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,5 @@ repos:
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)