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

fix col name error when fetch data (#1904)

* fix col name error when fetch data

* fix col name error when fetch data

* fix install qlib error

* optimize code

* optimize code

* optimize code
This commit is contained in:
Linlang
2025-04-02 18:50:52 +08:00
committed by GitHub
parent 67feeaeb00
commit e7a1b5ea1f
2 changed files with 8 additions and 0 deletions

View File

@@ -23,6 +23,9 @@ description = "A Quantitative-research Platform"
requires-python = ">=3.8.0"
readme = {file = "README.md", content-type = "text/markdown"}
# On 2025-04-02 osqp released version 1.0.2, osqp is used as a dependency for cvxpy.
# It would lead to errors installing qlib, so we limited the version of osqp.
# refs: https://github.com/osqp/osqp/issues/728
dependencies = [
"pyyaml",
"numpy",
@@ -39,6 +42,7 @@ dependencies = [
"loguru",
"lightgbm",
"gym",
"osqp<1.0.2",
"cvxpy",
"joblib",
"matplotlib",