chore(deps): upgrade pyballista to DataFusion 54 - #1919
Merged
Conversation
coderfender
pushed a commit
to coderfender/datafusion-ballista
that referenced
this pull request
Jul 13, 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.
Which issue does this PR close?
Closes #.
Rationale for this change
#1906 upgraded the main workspace to DataFusion 54, but the
python/sub-project (a separate Cargo workspace that path-depends on the ballista crates) was left pinned to DataFusion 53. As a result,python/now mixes two DataFusion majors:pyballistacompiles the ballista path-deps against datafusion 54 while its owndatafusiondependency resolves to 53, which fails to build:This PR brings
python/up to DataFusion 54 so the python build is consistent again.What changes are included in this PR?
Bump the
python/sub-project from DataFusion 53 to 54, keeping both ecosystems in lockstep:python/Cargo.toml—datafusion,datafusion-proto,datafusion-python→54python/pyproject.toml—datafusion==54python/Cargo.lock— regenerated (now resolves a single datafusion major,54)python/uv.lock— regenerated (datafusionpython package →54)No source changes were required
Verified locally:
cargo check,maturin develop, andpytest(73 passed, 1 skipped) all succeed against DataFusion 54.Are there any user-facing changes?
The
ballistaPython package now builds against and requires DataFusion 54 (datafusion==54). No API changes to the package itself.No breaking changes to public Rust APIs.