Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Excluded scipy v1.0.0 from setup.py #47

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Excluded scipy v1.0.0 from setup.py
See issue #39.
  • Loading branch information
wflynny authored Feb 21, 2018
commit bbadfb954563c54d4ba28bd0d0052d815810f218
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 32,7 @@ def readme():
'license' : 'BSD',
'packages' : ['umap'],
'install_requires' : ['scikit-learn >= 0.16',
'scipy >= 0.19',
'scipy >= 0.19, != 1.0.0',
'numba >= 0.34'],
'ext_modules' : [],
'cmdclass' : {},
Expand Down