File tree Expand file tree Collapse file tree 4 files changed +4
-452
lines changed
Expand file tree Collapse file tree 4 files changed +4
-452
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Other Changes and Additions
1111- Elements of the data array in a flat image that are masked are set to 1
1212 instead of 0.
1313- Removed unused ``ccdproc.test() ``. Use ``pytest --pyargs ccdproc `` instead. [#880]
14+ - Removed bundled copy of bitfield handling and use the one from astropy. [#886]
1415
1516Bug Fixes
1617^^^^^^^^^
Original file line number Diff line number Diff line change 1212from astropy import units as u
1313from astropy .modeling import fitting
1414from astropy .nddata import CCDData , StdDevUncertainty
15+ from astropy .nddata .bitmask import (
16+ bitfield_to_boolean_mask as _bitfield_to_boolean_mask ,
17+ )
1518from astropy .units .quantity import Quantity
1619from astropy .utils import deprecated , deprecated_renamed_argument
1720from astropy .wcs .utils import proj_plane_pixel_area
1821from packaging import version as pkgversion
1922from scipy import ndimage
2023
21- from .extern .bitfield import bitfield_to_boolean_mask as _bitfield_to_boolean_mask
2224from .log_meta import log_to_metadata
2325from .utils .slices import slice_from_string
2426
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments