File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ Alphabetical list of code contributors
3737* Yash Gondhalekar (@Yash-10)
3838* Hans Moritz Günther (@hamogu)
3939* Nathan Heidt (@heidtha)
40+ * Karl Hill (@karlhillx)
4041* Michael Hlabathe (@hlabathems)
4142* Elias Holte (@Sondanaa)
4243* Anthony Horton (@AnthonyHorton)
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Other Changes and Additions
55^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
77- Remove superfluous license file from the package. [#899]
8+ - scikit-image is no longer a runtime dependency. [#921]
89
9102.5.0 (2025-07-03)
1011------------------
Original file line number Diff line number Diff line change 77import astropy
88import astropy .units as u
99import pytest
10- import skimage
1110from astropy .io import fits
1211from astropy .modeling import models
1312from astropy .nddata import (
@@ -801,10 +800,6 @@ def tran(arr):
801800
802801# Test block_reduce and block_replicate wrapper
803802@pytest .mark .skipif (not HAS_BLOCK_X_FUNCS , reason = "needs astropy >= 1.1.x" )
804- @pytest .mark .skipif (
805- (skimage .__version__ < "0.14.2" ) and ("dev" in xp .__version__ ),
806- reason = "Incompatibility between scikit-image " "and numpy 1.16" ,
807- )
808803def test_block_reduce ():
809804 ccd = CCDData (
810805 xp .ones ((4 , 4 )),
@@ -834,10 +829,6 @@ def test_block_reduce():
834829
835830
836831@pytest .mark .skipif (not HAS_BLOCK_X_FUNCS , reason = "needs astropy >= 1.1.x" )
837- @pytest .mark .skipif (
838- (skimage .__version__ < "0.14.2" ) and ("dev" in xp .__version__ ),
839- reason = "Incompatibility between scikit-image " "and numpy 1.16" ,
840- )
841832def test_block_average ():
842833 data = xp .asarray (
843834 [
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ dependencies = [
2121 " astroscrappy>=1.1.0" ,
2222 " numpy>=1.26" ,
2323 " reproject>=0.9.1" ,
24- " scikit-image" ,
2524 " scipy" ,
2625]
2726
You can’t perform that action at this time.
0 commit comments