From ffd5e195e55f307754f5810fb8b642460a795044 Mon Sep 17 00:00:00 2001 From: Carles Sala Date: Fri, 22 Feb 2019 17:00:58 -0500 Subject: [PATCH] Put an upper bound to scikit-learn to avoid BTB crash --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index ad6b2d2..543d653 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ numpy>=1.13.1 pandas>=0.22.0 pyyaml>=3.12 requests>=2.18.4 -scikit-learn>=0.18.2 +scikit-learn>=0.18.2,<0.20 scipy>=0.19.1 sklearn-pandas>=1.5.0 sqlalchemy>=1.1.14 diff --git a/setup.py b/setup.py index 7d93396..17797f6 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ 'numpy>=1.13.1', 'pandas>=0.22.0', 'pyyaml>=3.12', - 'scikit-learn>=0.18.2', + 'scikit-learn>=0.18.2,<0.20', 'scipy>=0.19.1', 'sklearn-pandas>=1.5.0', 'sqlalchemy>=1.1.14',