From 07f6cc4c904db0143c7dbdc2807e3a7019555c54 Mon Sep 17 00:00:00 2001 From: Li Jiang Date: Thu, 29 Jun 2023 13:35:31 +0800 Subject: [PATCH 1/2] temp solution for joblib 1.3.0 issue, no need once https://github.com/joblib/joblib-spark/pull/48 is merged --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 3f8d90e082..80099c33bf 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ install_requires = [ "NumPy>=1.17.0rc1", + "joblib<1.3.0", # temp solution for joblib 1.3.0 issue, no need once https://github.com/joblib/joblib-spark/pull/48 is merged ] From 0d99fa80318d9d85b0753151d2e73251f35f3749 Mon Sep 17 00:00:00 2001 From: Li Jiang Date: Fri, 30 Jun 2023 07:47:44 +0800 Subject: [PATCH 2/2] update option --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 80099c33bf..dddba08f8b 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,6 @@ install_requires = [ "NumPy>=1.17.0rc1", - "joblib<1.3.0", # temp solution for joblib 1.3.0 issue, no need once https://github.com/joblib/joblib-spark/pull/48 is merged ] @@ -48,6 +47,7 @@ "spark": [ "pyspark>=3.2.0", "joblibspark>=0.5.0", + "joblib<1.3.0", # temp solution for joblib 1.3.0 issue, no need once https://github.com/joblib/joblib-spark/pull/48 is merged ], "test": [ "lightgbm>=2.3.1", @@ -88,6 +88,7 @@ "pydantic", "sympy", "wolframalpha", + "joblib<1.3.0", # temp solution for joblib 1.3.0 issue, no need once https://github.com/joblib/joblib-spark/pull/48 is merged ], "catboost": ["catboost>=0.26"], "blendsearch": ["optuna==2.8.0"], @@ -141,6 +142,7 @@ "joblibspark>=0.5.0", "optuna==2.8.0", "pyspark>=3.2.0", + "joblib<1.3.0", # temp solution for joblib 1.3.0 issue, no need once https://github.com/joblib/joblib-spark/pull/48 is merged ], "autozero": ["scikit-learn", "pandas", "packaging"], },