GH-37853: [Python] Remove test and fixture involving fastparquet#50416
Open
raulcd wants to merge 1 commit into
Open
GH-37853: [Python] Remove test and fixture involving fastparquet#50416raulcd wants to merge 1 commit into
raulcd wants to merge 1 commit into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes the last remaining fastparquet-specific pytest wiring and an unexercised cross-compatibility test that now fails with pandas 3 due to fastparquet being effectively retired. This aligns the PyArrow Python test suite with dependencies that are actually supported and exercised in CI.
Changes:
- Removed
test_fastparquet_cross_compatibilityfrom the Parquet basic test suite. - Removed the
fastparquetoptional-dependency group/default detection frompython/pyarrow/conftest.py.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| python/pyarrow/tests/parquet/test_basic.py | Removes the unused fastparquet cross-compatibility test that is incompatible with pandas 3. |
| python/pyarrow/conftest.py | Removes the fastparquet optional dependency group and import-based enablement since no tests require it anymore. |
AlenkaF
approved these changes
Jul 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rationale for this change
test_fastparquet_cross_compatibilityis not exercised and when exercised with latest versions it fails because it's not compatible with pandas 3 and it won't be as the project is retired, see:What changes are included in this PR?
Removal of fixture to mark test as
fastparquetand remove single test that still required fastarquet.Are these changes tested?
Yes and no. CI is exercised as expected but
fastparquettests weren't exercised on CI in the first place.Are there any user-facing changes?
No