Skip to content

Commit

Permalink
Remove deprecated 'order' arg from reproject_adaptive
Browse files Browse the repository at this point in the history
  • Loading branch information
svank committed Sep 1, 2022
1 parent 3f14e72 commit 16fb519
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
``reproject_adaptive``.
- Changed default boundary mode from ``ignore`` to ``strict`` for
``reproject_adaptive``.
- The deprecated ``order`` argument has been removed from
``reproject_adaptive``. As of version 0.9, it no longer had any effect.

0.9 (unreleased)
----------------
Expand Down
6 changes: 0 additions & 6 deletions reproject/adaptive/high_level.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
import astropy.utils

from ..utils import parse_input_data, parse_output_projection
from .core import _reproject_adaptive_2d

__all__ = ['reproject_adaptive']


@astropy.utils.deprecated_renamed_argument('order', None, since=0.9)
def reproject_adaptive(input_data, output_projection, shape_out=None, hdu_in=0,
order=None,
return_footprint=True, center_jacobian=False,
roundtrip_coords=True, conserve_flux=False,
kernel='gaussian', kernel_width=1.3,
Expand Down Expand Up @@ -49,9 +46,6 @@ def reproject_adaptive(input_data, output_projection, shape_out=None, hdu_in=0,
hdu_in : int or str, optional
If ``input_data`` is a FITS file or an `~astropy.io.fits.HDUList`
instance, specifies the HDU to use.
order : str
Deprecated, and no longer has any effect. Will be removed in a future
release.
return_footprint : bool
Whether to return the footprint in addition to the output array.
center_jacobian : bool
Expand Down

0 comments on commit 16fb519

Please sign in to comment.