From d65c79abb02982b69cc2c8d8f9a7e7305ceeeca3 Mon Sep 17 00:00:00 2001 From: Kacper Sokol Date: Sat, 13 Oct 2018 15:13:16 +0100 Subject: [PATCH] Use numpy version (1.11.0) appropriate for 0.17.1<=scikit-learn<0.18 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7fcea42..8a197ac 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ description=("Machine Learning-Based Predictive Modelling of CRISPR/Cas9 guide efficiency"), packages=["azimuth", "azimuth.features", "azimuth.models", "azimuth.tests"], package_data={'azimuth': ['saved_models/*.*']}, - install_requires=['scipy', 'numpy', 'matplotlib', 'nose', 'scikit-learn>=0.17.1,<0.18', 'pandas', 'biopython'], + install_requires=['scipy', 'numpy==1.11.0', 'matplotlib', 'nose', 'scikit-learn>=0.17.1,<0.18', 'pandas', 'biopython'], license="BSD", # ext_modules=cythonize("ssk_cython.pyx"), )