From 9ea5cfb3758659946d45ad78116837fd749842be Mon Sep 17 00:00:00 2001 From: Thomas Kent Date: Sat, 27 Oct 2018 07:45:14 -0500 Subject: [PATCH] Python2 compatible version of matplotlib The latest version of matplotlib doesn't support python2, so need to track the latest 2.x. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7fcea42..4392e56 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', 'matplotlib<3.0', 'nose', 'scikit-learn>=0.17.1,<0.18', 'pandas', 'biopython'], license="BSD", # ext_modules=cythonize("ssk_cython.pyx"), )