File tree Expand file tree Collapse file tree 6 files changed +12
-13
lines changed Expand file tree Collapse file tree 6 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 3333jplspec
3434^^^^^^^
3535
36- - Moved to linelists/ [#3455]
36+ - Moved to linelists/. astroquery.jplspec is now deprecated in favor of astroquery.linelists.jplspec [#3455]
37+
38+ linelists.jplspec
39+ ^^^^^^^^^^^^^^^^^
40+
41+ - New location for jplspec. astroquery.jplspec is now deprecated in favor of astroquery.linelists.jplspec [#3455]
3742
3843Infrastructure, Utility and Other Changes and Additions
3944-------------------------------------------------------
Original file line number Diff line number Diff line change 33JPL Spectral Catalog (Deprecated Location)
44-------------------------------------------
55
6- .. deprecated:: 0.4.8
6+ .. deprecated:: 0.4.12
77 The `astroquery.jplspec` module has been moved to `astroquery.linelists.jplspec`.
88 Please update your imports to use `from astroquery.linelists.jplspec import JPLSpec` instead.
99 This backward compatibility layer will be removed in a future version.
Original file line number Diff line number Diff line change 22"""
33JPL Spectral Catalog
44--------------------
5-
6-
7- :author: Giannina Guzman (gguzman2@villanova.edu)
8- :author: Miguel de Val-Borro (miguel.deval@gmail.com)
9-
105"""
116from astropy import config as _config
127
Original file line number Diff line number Diff line change 44
55import astropy .units as u
66from astropy .io import ascii
7- from .. .query import BaseQuery
8- from .. .utils import async_to_sync
7+ from astroquery .query import BaseQuery
8+ from astroquery .utils import async_to_sync
99# import configurable items declared in __init__.py
10- from . import conf
11- from . import lookup_table
10+ from astroquery .linelists .jplspec import conf , lookup_table
1211from astroquery .exceptions import EmptyResponseError , InvalidQueryError
1312
1413
Original file line number Diff line number Diff line change 44
55from astropy import units as u
66from astropy .table import Table
7- from ... .jplspec import JPLSpec
7+ from astroquery . linelists .jplspec import JPLSpec
88
99file1 = 'CO.data'
1010file2 = 'CO_6.data'
Original file line number Diff line number Diff line change 22from astropy import units as u
33from astropy .table import Table
44
5- from ... .jplspec import JPLSpec
5+ from astroquery . linelists .jplspec import JPLSpec
66
77
88@pytest .mark .remote_data
You can’t perform that action at this time.
0 commit comments