Skip to content

Commit

Permalink
Require Astropy 2.0 or later
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Oct 18, 2018
1 parent b0732b4 commit 162068d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/installation/dependencies.rst
Expand Up @@ -9,7 +9,7 @@ Glue has the following required dependencies:
* `Numpy <http://www.numpy.org>`_ 1.9 or later
* `Matplotlib <https://matplotlib.org/>`_ 2.0 or later
* `Pandas <http://pandas.pydata.org/>`_ 0.14 or later
* `Astropy <http://www.astropy.org>`_ 1.0 or higher
* `Astropy <http://www.astropy.org>`_ 2.0 or higher
* `setuptools <http://setuptools.readthedocs.io/en/latest/>`_ 1.0 or later
* Either `PyQt5 <https://www.riverbankcomputing.com/software/pyqt/intro>`__ or
`PySide2 <https://wiki.qt.io/PySide2>`__
Expand Down
2 changes: 1 addition & 1 deletion glue/_deps.py
Expand Up @@ -162,7 +162,7 @@ def installed(self):
Dependency('bottleneck', 'Required', min_version='1.2'),
Dependency('matplotlib', 'Required for plotting', min_version='2.0'),
Dependency('pandas', 'Adds support for Excel files and DataFrames', min_version='0.14'),
Dependency('astropy', 'Used for FITS I/O, table reading, and WCS Parsing', min_version='1.3'),
Dependency('astropy', 'Used for FITS I/O, table reading, and WCS Parsing', min_version='2.0'),
Dependency('dill', 'Used when saving Glue sessions', min_version='0.2'),
Dependency('h5py', 'Used to support HDF5 files', min_version='2.4'),
Dependency('xlrd', 'Used to support Excel files', min_version='1.0'),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -76,7 +76,7 @@

install_requires = ['numpy>=1.9',
'pandas>=0.14',
'astropy>=1.3',
'astropy>=2.0',
'matplotlib>=2.0',
'qtpy>=1.2',
'setuptools>=1.0',
Expand Down

0 comments on commit 162068d

Please sign in to comment.