ci-wheel: set pip floor to 25.3#347
Merged
jameslamb merged 1 commit intorapidsai:release/26.02from Jan 15, 2026
Merged
Conversation
17 tasks
KyleFromNVIDIA
approved these changes
Jan 15, 2026
Merged
jameslamb
added a commit
to jameslamb/ci-imgs
that referenced
this pull request
Jan 15, 2026
rapids-bot bot
pushed a commit
that referenced
this pull request
Jan 16, 2026
I just merged #347 into `release/26.02` and after a few minutes hadn't seen it forward-merged to `main`. Looks like automatic forward mergers are not set up here. They should be, now that we're producing RAPIDS-versioned images (rapidsai/build-planning#187) and using the new RAPIDS branching strategy (#323). This enables forward mergers. This also `git cherry-pick`s over the changes from #347 so they'll make it onto `main`. Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Bradley Dice (https://github.com/bdice) - Nate Rock (https://github.com/rockhowse) URL: #350
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.
Contributes to rapidsai/build-planning#242
To adjust to the new behavior introduced into
pipin pypa/pip#13534, we're rolling out changes like rapidsai/cudf#21048 that pass--build-constrainttopip wheel.That flag is new as of
pip>=25.3, so it's important that RAPIDS wheel builds in CI use at leastpip>=25.3. That's the version they're already getting today, this PR just gives us a bit of extra protection by making that explicit in the Dockerfile for theci-wheelimage.Notes for Reviewers
So RAPIDS requires
pip>=25.3now?No. It's only required to BUILD RAPIDS wheels and only if you're using the CI scripts in RAPIDS repos.
Building them in devcontainers or from source on your own doesn't have this restriction.
Why not update
citestwheeltoo?Nothing is changing about the versions of
piprequired for INSTALLING RAPIDS wheels, and there's not a strong relationship between thepipused at build time and the one used at install time.Why no update
ci-condatoo?Conda builds are totally unaffected by the new
pipbehavior.