1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-06-06 05:51:17 +08:00

feat: use pydantic-settings for MLflow config and update dependencies (#1962)

* feat: use pydantic-settings for MLflow config and update dependencies

* docs
This commit is contained in:
you-n-g
2025-07-01 21:32:11 +08:00
committed by GitHub
parent 38f02d25dc
commit 78b77e302b
3 changed files with 51 additions and 2 deletions

View File

@@ -27,6 +27,9 @@ dependencies = [
"pyyaml",
"numpy",
"pandas>=0.24",
# I encoutered an Error that the set_uri does not work when downloading artifacts in mlflow 3.1.1;
# But earlier versions of mlflow does not have this problem.
# But when I switch to 2.*.* version, another error occurs, which is even more strange...
"mlflow",
"filelock>=3.16.0",
"redis",
@@ -45,6 +48,7 @@ dependencies = [
"jupyter",
"nbconvert",
"pyarrow",
"pydantic-settings",
]
[project.optional-dependencies]
@@ -90,6 +94,7 @@ test = [
]
analysis = [
"plotly",
"statsmodels",
]
[tool.setuptools]