Skip to content
Snippets Groups Projects
Commit 1ab29800 authored by David Rafferty's avatar David Rafferty
Browse files

Change required astropy version to 3.2

parent bac707bc
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,8 @@ else: ...@@ -17,7 +17,8 @@ else:
if sys.version_info < (3, 0): if sys.version_info < (3, 0):
reqlist = ['numpy', 'astropy >= 0.4, <3.0'] reqlist = ['numpy', 'astropy >= 0.4, <3.0']
else: else:
reqlist = ['numpy', 'astropy >= 0.4'] # Require astropy v3.2 or later to get much faster copies
reqlist = ['numpy', 'astropy >= 3.2']
if build_c_extentions: if build_c_extentions:
reqlist.append('pybind11>=2.2.0') reqlist.append('pybind11>=2.2.0')
ext_modules = [Extension('lsmtool.operations._grouper', ext_modules = [Extension('lsmtool.operations._grouper',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment