From e6d2d4e8e8cf61bbd14f4e3ebf25d853505038c2 Mon Sep 17 00:00:00 2001 From: bxdd Date: Fri, 14 Apr 2023 15:33:25 +0800 Subject: [PATCH] [MNT] Update setup --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 48bb9a9..4df998e 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ if os.path.exists("MANIFEST"): # What packages are required for this module to be executed? # `estimator` may depend on other packages. In order to reduce dependencies, it is not written here. REQUIRED = [ - "numpy>=1.12.0", + "numpy>=1.12.0, <1.24", "pandas>=0.25.1", "scipy>=1.0.0", "matplotlib>=3.1.3", @@ -41,12 +41,11 @@ REQUIRED = [ # "mkl-service>=2.3.0", "cvxopt>=1.3.0", "tqdm>=4.65.0", - "scikit-learn>=1.2.2", + "scikit-learn>=0.22", "joblib>=1.2.0", "pyyaml>=6.0", - "fire>=0.5.0", - "scikit-learn>=1.2.2", - "lightgbm>=3.3.5", + "fire>=0.3.1", + "lightgbm>=3.3.0", ] here = os.path.abspath(os.path.dirname(__file__))