From bbadfb954563c54d4ba28bd0d0052d815810f218 Mon Sep 17 00:00:00 2001 From: Bill Flynn Date: Wed, 21 Feb 2018 09:31:14 -0500 Subject: [PATCH] Excluded scipy v1.0.0 from setup.py See issue #39. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e9ab8ae9..cc7770d0 100644 --- a/setup.py +++ b/setup.py @@ -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' : {},