diff --git a/python/lsst/ip/diffim/getTemplate.py b/python/lsst/ip/diffim/getTemplate.py index 43c6ef5f5..3a618b3ed 100644 --- a/python/lsst/ip/diffim/getTemplate.py +++ b/python/lsst/ip/diffim/getTemplate.py @@ -21,7 +21,6 @@ import collections import numpy as np -from deprecated.sphinx import deprecated import lsst.afw.image as afwImage import lsst.geom as geom @@ -190,17 +189,6 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs): ) butlerQC.put(outputs, outputRefs) - @deprecated( - reason="Replaced by getExposures, which uses explicit arguments instead of a kwargs dict. " - "This method will be removed after v29.", - version="v29.0", - category=FutureWarning, - ) - def getOverlappingExposures(self, inputs): - return self.getExposures( - inputs["coaddExposures"], inputs["bbox"], inputs["skyMap"], inputs["wcs"] - ) - def getExposures(self, coaddExposureHandles, bbox, skymap, wcs): """Return a data structure containing the coadds that overlap the specified bbox projected onto the sky, and a corresponding data @@ -698,21 +686,6 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs): ) butlerQC.put(outputs, outputRefs) - @deprecated( - reason="Replaced by getExposures, which uses explicit arguments instead of a kwargs dict. " - "This method will be removed after v29.", - version="v29.0", - category=FutureWarning, - ) - def getOverlappingExposures(self, inputs): - return self.getExposures( - inputs["dcrCoadds"], - inputs["bbox"], - inputs["skyMap"], - inputs["wcs"], - inputs["visitInfo"], - ) - def getExposures(self, dcrCoaddExposureHandles, bbox, skymap, wcs, visitInfo): """Return lists of coadds and their corresponding dataIds that overlap the detector.