From 2560017fc9aab0768d3982a3315b6616a8d0089a Mon Sep 17 00:00:00 2001 From: Linlang Date: Wed, 3 Sep 2025 16:21:55 +0800 Subject: [PATCH 1/3] chore: Align collect_info.py with pyproject.toml --- scripts/collect_info.py | 35 +++++++++++++++-------------------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/scripts/collect_info.py b/scripts/collect_info.py index 874686a3c5..e2c23f12e0 100644 --- a/scripts/collect_info.py +++ b/scripts/collect_info.py @@ -28,32 +28,27 @@ def qlib(self): """collect qlib related info""" print("Qlib version: {}".format(qlib.__version__)) REQUIRED = [ - "numpy", - "pandas", - "scipy", - "requests", - "sacred", - "python-socketio", - "redis", - "python-redis-lock", - "schedule", - "cvxpy", - "hyperopt", - "fire", - "statsmodels", - "xlrd", - "plotly", - "matplotlib", - "tables", "pyyaml", "mlflow", + "filelock>=3.16.0", + "redis", + "dill", + "fire", + "ruamel.yaml>=0.17.38", + "python-redis-lock", "tqdm", + "pymongo", "loguru", "lightgbm", - "tornado", + "gym", + "cvxpy", "joblib", - "fire", - "ruamel.yaml", + "matplotlib", + "jupyter", + "nbconvert", + "pyarrow", + "pydantic-settings", + "setuptools-scm", ] for package in REQUIRED: From 748b4e13b70f115efab20255d10debd0257f0bf9 Mon Sep 17 00:00:00 2001 From: Linlang Date: Wed, 3 Sep 2025 17:04:20 +0800 Subject: [PATCH 2/3] delete version info --- scripts/collect_info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/collect_info.py b/scripts/collect_info.py index e2c23f12e0..bccf0a7116 100644 --- a/scripts/collect_info.py +++ b/scripts/collect_info.py @@ -30,11 +30,11 @@ def qlib(self): REQUIRED = [ "pyyaml", "mlflow", - "filelock>=3.16.0", + "filelock", "redis", "dill", "fire", - "ruamel.yaml>=0.17.38", + "ruamel.yaml", "python-redis-lock", "tqdm", "pymongo", From 1d9ece49bbfac36f0060c83a82a45eca0994d0a2 Mon Sep 17 00:00:00 2001 From: Linlang Date: Wed, 3 Sep 2025 18:35:16 +0800 Subject: [PATCH 3/3] chore: align collect_info.py with pyproject.toml --- scripts/collect_info.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/collect_info.py b/scripts/collect_info.py index bccf0a7116..9e7a6395ef 100644 --- a/scripts/collect_info.py +++ b/scripts/collect_info.py @@ -28,7 +28,12 @@ def qlib(self): """collect qlib related info""" print("Qlib version: {}".format(qlib.__version__)) REQUIRED = [ + "setuptools", + "wheel", + "cython", "pyyaml", + "numpy", + "pandas", "mlflow", "filelock", "redis",