From f0d9b16f4848b4eacc1b8c691dd499cfdb587410 Mon Sep 17 00:00:00 2001 From: Mark Dunne Date: Fri, 2 Dec 2016 16:22:55 +0000 Subject: [PATCH] dependency fix --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fb252bf..7fcea42 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', 'pandas', 'biopython'], + install_requires=['scipy', 'numpy', 'matplotlib', 'nose', 'scikit-learn>=0.17.1,<0.18', 'pandas', 'biopython'], license="BSD", # ext_modules=cythonize("ssk_cython.pyx"), )