Skip to content

Commit 9d4bc0b

Browse files
authored
[1.5.1] restrict pandas to <2.0 (#1074)
* [1.5.1] 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.1
1 parent bec8728 commit 9d4bc0b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ def _parse_requirements_file(file_path):
150150
"datasets<=1.18.4",
151151
"scikit-learn",
152152
"seqeval",
153+
"pandas>=0.25.0,<2.0",
153154
]
154155

155156
# haystack dependencies are installed from a requirements file to avoid

src/deepsparse/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from deepsparse.generated_version import is_enterprise, is_release, splash, version
4040
except Exception:
4141
# otherwise, fall back to version info in this file
42-
version = "1.5.0"
42+
version = "1.5.1"
4343
is_release = False
4444
is_enterprise = False
4545
splash = (

0 commit comments

Comments
 (0)