From 556a2cd5c4efd88ffc7a48353dbfb8185c662d69 Mon Sep 17 00:00:00 2001 From: Burton DeWilde Date: Tue, 16 Apr 2019 08:59:57 -0500 Subject: [PATCH] Update setup install_requires deps to match requirements.txt --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index ed47344..eb99746 100644 --- a/setup.py +++ b/setup.py @@ -97,10 +97,10 @@ def find_libxml2_include(): ext_modules=cythonize(ext_modules), install_requires=[ 'Cython>=0.21.1', + 'ftfy>=4.1.0,<5.0.0', 'lxml', - 'scikit-learn>=0.15.2,<=0.20', - 'numpy', - 'scipy', - 'ftfy>=4.1.0,<5.0.0' + 'numpy>=1.11.0', + 'scikit-learn>=0.15.2,<0.21.0', + 'scipy>=0.17.0', ] )