Fix Python interpreter selection for reproducible installs#7
Open
shahabajsheikh-ops wants to merge 1 commit into
Open
Fix Python interpreter selection for reproducible installs#7shahabajsheikh-ops wants to merge 1 commit into
shahabajsheikh-ops wants to merge 1 commit into
Conversation
shahabajsheikh-ops
requested review from
jonmaaku-rev,
mira-mohammad and
roycabezas
as code owners
July 25, 2026 11:51
Author
|
The repository CI passes on both Python 3.12 and 3.13. Update:
— Shahabaj Sheikh |
Author
|
@mira-mohammad @jonmaaku-rev @roycabezas @nimit2801 could you please review this contribution? The Python 3.12 and 3.13 CI jobs, global checks, and description validation all pass. The only remaining required check, The corresponding DevRev work item is ISS-350288. — Shahabaj Sheikh |
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.
Summary
uv syncfrom selecting unsupported Python 3.14Reproduction
On macOS,
make installselected CPython 3.14.5 and failed while buildinglitellm==1.92.0because its locked PyO3 dependency supports at most Python 3.13. With this change, Python 3.14 receives a clear incompatible-version message while Python 3.12 and 3.13 install successfully.Related issue
https://app.devrev.ai/devrev/works/ISS-350288
Validation
uv sync --python 3.12 --extra dev --frozenmake validateon Python 3.12.13uv sync --python 3.13 --extra dev --frozenmake validateon Python 3.13.5uv lock --checkgit diff --checkAuthor: Shahabaj Sheikh