diff --git a/astroquery/mocserver/core.py b/astroquery/mocserver/core.py index 3491af11e4..761a175496 100644 --- a/astroquery/mocserver/core.py +++ b/astroquery/mocserver/core.py @@ -10,6 +10,7 @@ from astropy import units as u from astropy.table import Table +from astropy.utils import deprecated try: from mocpy import MOC, TimeMOC, STMOC @@ -222,6 +223,8 @@ def query_hips( cache=cache, ) + @deprecated(since="v0.4.8", + alternative="query_region") def find_datasets( self, meta_data, *, diff --git a/astroquery/mocserver/tests/test_mocserver.py b/astroquery/mocserver/tests/test_mocserver.py index e93946580f..54d43ef701 100644 --- a/astroquery/mocserver/tests/test_mocserver.py +++ b/astroquery/mocserver/tests/test_mocserver.py @@ -7,6 +7,7 @@ from astropy import coordinates from astropy.io.votable import parse_single_table from astropy.table import Table +from astropy.utils.exceptions import AstropyDeprecationWarning try: from mocpy import MOC, STMOC, TimeMOC, FrequencyMOC @@ -269,5 +270,6 @@ def test_cast_to_float(): def test_find_datasets(): # find datasets is useless as it does the same than query region - old = MOCServer.find_datasets(meta_data="ID=*Euclid*", get_query_payload=True) + with pytest.warns(AstropyDeprecationWarning, match="The find_datasets function *"): + old = MOCServer.find_datasets(meta_data="ID=*Euclid*", get_query_payload=True) assert old == MOCServer.query_region(meta_data="ID=*Euclid*", get_query_payload=True)