-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
TST/COMPAT: update csv test to infer time with pyarrow>=6.0 #44381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TST/COMPAT: update csv test to infer time with pyarrow>=6.0 #44381
Conversation
Thanks @jorisvandenbossche. This has now starting failing on master and so I guess probably 1.3.x too. Will milestone 1.3.5 for backport. |
@@ -12,6 +12,7 @@ | |||
pa_version_under3p0 = _palv < Version("3.0.0") | |||
pa_version_under4p0 = _palv < Version("4.0.0") | |||
pa_version_under5p0 = _palv < Version("5.0.0") | |||
pa_version_under6p0 = _palv < Version("6.0.0") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think also need to add pa_version_under6p0 = True
below
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, yes, thanks
The new pyarrow engine should only be present on master, so I guess backport is not needed. @jorisvandenbossche Do you know if pyarrow will add an option to configure this auto-inference? |
Good point. I am not aware of any discussion about an option to turn it off (looking at https://issues.apache.org/jira/browse/ARROW-11247 now) |
The sdist 3.10 build was failing (unrelated I suppose), is that a know failure ? (I don't directly see an issue about it) |
Closes #44231