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

Exclude astropy 4.x to avoid installation problems

parent 1ab29800
No related branches found
No related tags found
No related merge requests found
...@@ -17,8 +17,9 @@ else: ...@@ -17,8 +17,9 @@ 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:
# Require astropy v3.2 or later to get much faster copies # Require astropy v3.2 or later to get much faster copies (4.x can cause some
reqlist = ['numpy', 'astropy >= 3.2'] # installation problems, so exclude for now)
reqlist = ['numpy', 'astropy >= 3.2, <4.0']
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