Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Other Changes and Additions
^^^^^^^^^^^^^^^^^^^^^^^^^^^

- Remove superfluous license file from the package. [#899]
- scikit-image is no longer a runtime dependency. [#921]

2.5.0 (2025-07-03)
------------------
Expand Down
9 changes: 0 additions & 9 deletions ccdproc/tests/test_ccdproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import astropy
import astropy.units as u
import pytest
import skimage
from astropy.io import fits
from astropy.modeling import models
from astropy.nddata import (
Expand Down Expand Up @@ -801,10 +800,6 @@ def tran(arr):

# Test block_reduce and block_replicate wrapper
@pytest.mark.skipif(not HAS_BLOCK_X_FUNCS, reason="needs astropy >= 1.1.x")
@pytest.mark.skipif(
(skimage.__version__ < "0.14.2") and ("dev" in xp.__version__),
reason="Incompatibility between scikit-image " "and numpy 1.16",
)
def test_block_reduce():
ccd = CCDData(
xp.ones((4, 4)),
Expand Down Expand Up @@ -834,10 +829,6 @@ def test_block_reduce():


@pytest.mark.skipif(not HAS_BLOCK_X_FUNCS, reason="needs astropy >= 1.1.x")
@pytest.mark.skipif(
(skimage.__version__ < "0.14.2") and ("dev" in xp.__version__),
reason="Incompatibility between scikit-image " "and numpy 1.16",
)
def test_block_average():
data = xp.asarray(
[
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ dependencies = [
"astroscrappy>=1.1.0",
"numpy>=1.26",
"reproject>=0.9.1",
"scikit-image",
"scipy",
]

Expand Down