mirror of
https://github.com/huggingface/transformers.git
synced 2025-10-20 17:13:56 +08:00
Remove upper version bound of pandas (#41677)
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
This commit is contained in:
2
setup.py
2
setup.py
@ -128,7 +128,7 @@ _deps = [
|
|||||||
"opencv-python",
|
"opencv-python",
|
||||||
"optimum-benchmark>=0.3.0",
|
"optimum-benchmark>=0.3.0",
|
||||||
"optuna",
|
"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",
|
"packaging>=20.0",
|
||||||
"parameterized>=0.9", # older version of parameterized cause pytest collection to fail on .expand
|
"parameterized>=0.9", # older version of parameterized cause pytest collection to fail on .expand
|
||||||
"phonemizer",
|
"phonemizer",
|
||||||
|
|||||||
@ -38,7 +38,7 @@ deps = {
|
|||||||
"opencv-python": "opencv-python",
|
"opencv-python": "opencv-python",
|
||||||
"optimum-benchmark": "optimum-benchmark>=0.3.0",
|
"optimum-benchmark": "optimum-benchmark>=0.3.0",
|
||||||
"optuna": "optuna",
|
"optuna": "optuna",
|
||||||
"pandas": "pandas<2.3.0",
|
"pandas": "pandas!=2.3.0",
|
||||||
"packaging": "packaging>=20.0",
|
"packaging": "packaging>=20.0",
|
||||||
"parameterized": "parameterized>=0.9",
|
"parameterized": "parameterized>=0.9",
|
||||||
"phonemizer": "phonemizer",
|
"phonemizer": "phonemizer",
|
||||||
|
|||||||
Reference in New Issue
Block a user