From 6ea921bd844f7ac60edac622c861916426d4a8f7 Mon Sep 17 00:00:00 2001 From: Linlang Date: Tue, 5 Mar 2024 17:14:36 +0800 Subject: [PATCH] fix CI error --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 508fd8c3a4..adafefd614 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,8 @@ def get_version(rel_path: str) -> str: # To ensure stable operation of the experiment manager, we have limited the version of mlflow, # and we need to verify whether version 2.0 of mlflow can serve qlib properly. "mlflow>=1.12.1, <=1.30.0", + # mlflow 1.30.0 requires packaging<22, so we limit the packaging version, otherwise the CI will fail. + "packaging<22", "tqdm", "loguru", "lightgbm>=3.3.0",