Remove upper version bound of pandas (#41677)

Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
This commit is contained in:
Yuanyuan Chen
2025-10-17 23:31:41 +08:00
committed by GitHub
parent 12a50f294d
commit a15d77cd0c
2 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ _deps = [
"opencv-python",
"optimum-benchmark>=0.3.0",
"optuna",
"pandas<2.3.0", # `datasets` requires `pandas` while `pandas==2.3.0` has issues with CircleCI on 2025/06/05
"pandas!=2.3.0", # `datasets` requires `pandas` while `pandas==2.3.0` has issues with CircleCI on 2025/06/05
"packaging>=20.0",
"parameterized>=0.9", # older version of parameterized cause pytest collection to fail on .expand
"phonemizer",

View File

@ -38,7 +38,7 @@ deps = {
"opencv-python": "opencv-python",
"optimum-benchmark": "optimum-benchmark>=0.3.0",
"optuna": "optuna",
"pandas": "pandas<2.3.0",
"pandas": "pandas!=2.3.0",
"packaging": "packaging>=20.0",
"parameterized": "parameterized>=0.9",
"phonemizer": "phonemizer",