We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b0df0e commit c8c0349Copy full SHA for c8c0349
python/ray/dataframe/__init__.py
@@ -16,9 +16,9 @@
16
pd_major = int(pd_version.split(".")[0])
17
pd_minor = int(pd_version.split(".")[1])
18
19
-if pd_major == 0 and pd_minor < 22:
20
- raise Exception("In order to use Pandas on Ray, please upgrade your Pandas"
21
- " version to >= 0.22.")
+if pd_major == 0 and pd_minor != 22:
+ raise Exception("In order to use Pandas on Ray, your pandas version must "
+ "be 0.22. You can run 'pip install pandas==0.22'")
22
23
DEFAULT_NPARTITIONS = 8
24
0 commit comments