Skip to content

Commit 8dbdff2

Browse files
committed
Update CHANGES.rst with ESASky changes
1 parent 90851c3 commit 8dbdff2

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ esa.euclid
5555
- The ``get_product_list`` method now also returns file_name_list column when the product type belongs to
5656
BASIC_DOWNLOAD_DATA_PRODUCTS. [#3562]
5757

58+
esa.esasky
59+
60+
- The argument tap_handler on ESASky has been deprecated. Use the ESASky instance directly for TAP
61+
queries (Using esa.utils.EsaTap and PyVO).
62+
- Attribute urlBase has been deprecated on esasky.conf, use ESASKY_DOMAIN_SERVER instead.
63+
- Attribute timeout has been deprecated on esasky.conf, use ESASKY_CONNECTION_TIMEOUT instead.
64+
- Attribute row_limit has been deprecated on esasky.conf, use ESASKY_ROW_LIMIT instead.
5865

5966
vizier
6067
^^^^^^

astroquery/esasky/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ class Conf(_config.ConfigNamespace):
3030
ESASKY_ROW_LIMIT = _config.ConfigItem(10000, 'Maximum number of rows returned (set to -1 for unlimited).',
3131
aliases=['astroquery.esasky.row_limit'])
3232

33-
urlBase = deprecated_attribute(name='urlBase', alternative='ESASKY_DOMAIN_SERVER', since='8.0')
34-
timeout = deprecated_attribute(name='timeout', alternative='ESASKY_CONNECTION_TIMEOUT', since='8.0')
35-
row_limit = deprecated_attribute(name='row_limit', alternative='ESASKY_ROW_LIMIT', since='8.0')
33+
urlBase = deprecated_attribute(name='urlBase', alternative='ESASKY_DOMAIN_SERVER', since='0.4.12')
34+
timeout = deprecated_attribute(name='timeout', alternative='ESASKY_CONNECTION_TIMEOUT', since='0.4.12')
35+
row_limit = deprecated_attribute(name='row_limit', alternative='ESASKY_ROW_LIMIT', since='0.4.12')
3636

3737
cache_location = os.path.join(paths.get_cache_dir(), 'astroquery/esasky', )
3838

astroquery/esasky/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class ESASkyClass(EsaTap):
8282
SSO_TYPES = ['ALL', 'ASTEROID', 'COMET', 'SATELLITE', 'PLANET',
8383
'DWARF_PLANET', 'SPACECRAFT', 'SPACEJUNK', 'EXOPLANET', 'STAR']
8484

85-
@deprecated_renamed_argument('tap_handler', None, since='8.0', message="The 'tap_handler' parameter is deprecated"
85+
@deprecated_renamed_argument('tap_handler', None, since='0.4.12', message="The 'tap_handler' parameter is deprecated"
8686
"and will be removed in a future version. Use the ESASky instance directly for TAP"
8787
"queries (Using esa.utils.EsaTap and PyVO).")
8888
def __init__(self, *, tap_handler=None, show_messages=False, auth_session=None, tap_url=None):

0 commit comments

Comments
 (0)