File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 76
76
- New DataLink API handling. [#2493]
77
77
- Fixed bug #2489 in which blank URLs were being sent to the downloader [#2490]
78
78
- Removed deprecated broken functions from ``alma.utils ``. [#2331]
79
+ - Fixed a bug in slicing of ALMA regions. [#2810]
79
80
80
81
astrometry_net
81
82
^^^^^^^^^^^^^^
Original file line number Diff line number Diff line change @@ -50,7 +50,12 @@ def footprint_to_reg(footprint):
50
50
if footprint [:7 ] != 'Polygon' and footprint [:6 ] != 'Circle' :
51
51
raise ValueError ("Unrecognized footprint type" )
52
52
53
- import regions
53
+ try :
54
+ import regions
55
+ except ImportError :
56
+ print ('Could not import `regions`, which is required for the '
57
+ 'functionality of this function.' )
58
+ raise
54
59
55
60
reglist = []
56
61
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ and for running the tests:
114
114
* `pytest-rerunfailures <https://github.com/pytest-dev/pytest-rerunfailures >`__
115
115
116
116
The following packages are optional dependencies and are required for the
117
- full functionality of the `~astroquery.mocserver ` module :
117
+ full functionality of the `~astroquery.mocserver `, ` ~astroquery.alma `, and ` ~astroquery.xmatch ` modules :
118
118
119
119
* `astropy-healpix <http://astropy-healpix.readthedocs.io/en/latest/ >`_
120
120
* `regions <https://astropy-regions.readthedocs.io/en/latest/ >`_
You can’t perform that action at this time.
0 commit comments