-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
GH-37555: [Python] Update get_file_info_selector to ignore base directory #37558
Conversation
|
Conda builds are still using older version of |
Should we add checks in the test for different fsspec versions? |
I suppose not, since our tests should always pull the latest dependencies. |
Exactly. Maybe forcing the new version of |
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.
Overall LGTM! Thanks, @AlenkaF!
Sidenote: the title of this PR has nothing to do with its content anymore. |
LGTM! Thanks @AlenkaF ! |
Decided to remove the test for issue #36983 as I am eager to get the AppVeyor builds working. Will add a test for it in a separate PR. |
Tests passing, will merge. |
After merging your PR, Conbench analyzed the 6 benchmarking runs that have been run so far on merge-commit 396b475. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. |
… directory (apache#37558) ### Rationale for this change There has been some changes in the way fsspec lists the directories with new version 2023.9.0, see fsspec/filesystem_spec#1329, which caused our tests to start failing. ### What changes are included in this PR? This PR updates the `get_file_info_selector` in [FSSpecHandler](https://arrow.apache.org/docs/_modules/pyarrow/fs.html#FSSpecHandler) class to keep the behaviour of our spec. ### Are there any user-facing changes? No. * Closes: apache#37555 Authored-by: AlenkaF <[email protected]> Signed-off-by: AlenkaF <[email protected]>
… directory (apache#37558) ### Rationale for this change There has been some changes in the way fsspec lists the directories with new version 2023.9.0, see fsspec/filesystem_spec#1329, which caused our tests to start failing. ### What changes are included in this PR? This PR updates the `get_file_info_selector` in [FSSpecHandler](https://arrow.apache.org/docs/_modules/pyarrow/fs.html#FSSpecHandler) class to keep the behaviour of our spec. ### Are there any user-facing changes? No. * Closes: apache#37555 Authored-by: AlenkaF <[email protected]> Signed-off-by: AlenkaF <[email protected]>
Rationale for this change
There has been some changes in the way fsspec lists the directories with new version 2023.9.0, see fsspec/filesystem_spec#1329, which caused our tests to start failing.
What changes are included in this PR?
This PR updates the
get_file_info_selector
in FSSpecHandler class to keep the behaviour of our spec.Are there any user-facing changes?
No.