Skip to content

Commit dea7423

Browse files
authored
[1.5.2] restrict pandas to <2.0 (#1634)
* restrict pandas to <2.0 this fixes a bug in the latest NM 1.5 supported transformers datasets that is incompatible with pandas 2.0. Future releases will support later datasets versions * bump version to 1.5.2
1 parent 1995747 commit dea7423

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"matplotlib>=3.0.0",
4141
"merge-args>=0.1.0",
4242
"onnx>=1.5.0,<=1.12.0",
43-
"pandas>=0.25.0",
43+
"pandas>=0.25.0,<2.0",
4444
"packaging>=20.0",
4545
"psutil>=5.0.0",
4646
"pydantic>=1.5.0",

src/sparseml/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from datetime import date
2020

2121

22-
version_base = "1.5.1"
22+
version_base = "1.5.2"
2323
is_release = False # change to True to set the generated version as a release version
2424

2525

0 commit comments

Comments
 (0)