From 4fad0c63764e06b035b1bccf2b52030c6230e8e5 Mon Sep 17 00:00:00 2001 From: Baptiste Bauvin <baptiste.bauvin@lis-lab.fr> Date: Thu, 18 Nov 2021 10:32:20 -0500 Subject: [PATCH] sklearn compatibility --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 52d70cf..f57e13f 100644 --- a/setup.py +++ b/setup.py @@ -176,7 +176,7 @@ def setup_package(): keywords = ('machine learning, supervised learning, classification, ' 'ensemble methods, boosting, kernel') packages = find_packages(exclude=['*.tests']) - install_requires = ['scikit-learn>=0.24', 'numpy', 'scipy', 'cvxopt' ] + install_requires = ['scikit-learn==0.24', 'numpy', 'scipy', 'cvxopt' ] python_requires = '>=3.6' extras_require = { 'dev': ['pytest', 'pytest-cov'], -- GitLab