Skip to content

Commit

Permalink
MNT: Add optional SciPy requirement
Browse files Browse the repository at this point in the history
Includes an optional requirement on SciPy. As our oldest version of
SciPy, 0.12.0, requires NumPy 1.5.0 at a minimum to work and our minimum
supported NumPy version is 1.6.0, our SciPy support should work fine
with our existing hard NumPy requirement. Further it is expected modern
versions of SciPy would use more recent packaging standards to affect
its NumPy version requirement. Thus making it unnecessary for us to
specify it. Not to mention SciPy tries to support much older versions of
NumPy than we or other developers are likely to support. So there
shouldn't be any need for this specification as there was for Dask.
  • Loading branch information
jakirkham committed Mar 14, 2018
1 parent 39a5730 commit 39a9c97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,8 @@ def setup_package():
install_requires = [numpy_requirement]

opt_requires = {
'dask': ['numpy>=1.10, <2.0', 'dask[array]>=0.15.0']
'dask': ['numpy>=1.10, <2.0', 'dask[array]>=0.15.0'],
'scipy': ['scipy>=0.12.0']
}

setup_args = {
Expand Down

0 comments on commit 39a9c97

Please sign in to comment.