-
-
Notifications
You must be signed in to change notification settings - Fork 307
Split Pex .whl into two .whls.
#3057
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
Merged
Merged
Conversation
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
We now pulish two wheels: 1. `pex-<rev>.py27.py35.py36.py37.py38.py39.py310.py311-none-any.whl`: Targets exactly the Pythons in the python tag. 2. `pex-<rev>.py3.py312-none-any.whl`: Targets Python>=3.12. The 1st wheel carries the same contents as the existing `pex-<rev>.py2.py3.py312-none-any.whl` wheel and the 2nd wheel (`pex-<rev>.py3.py312-none-any.whl`) ships without vendored `pip`, `setuptools`, `toml` or `tomli` since these are either unusable or un-needed under Python>=3.12. Fixes pex-tool#2785.
Importantly, Pex without vendored Pip can now materialize vendored Pip from its VCS requirement.
Also apply package command CI timeout fix in a test that packages the Pex PEX scie.
This need not rely on a ranked tag.
An incidental bug noticed stress testing Pex split `.whl`s.
The one potentially tricky case in the split `.whl` regime is bootstrapping what would normally be vendored Pip to satisfy older `--python`s and / or explicitly requested `--pip-version vendored`.
This was referenced Jan 1, 2026
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.
We now publish two wheels:
pex-<rev>.py27.py35.py36.py37.py38.py39.py310.py311-none-any.whl:Targets exactly the Pythons in the python tag.
pex-<rev>.py3.py312-none-any.whl: Targets Python>=3.12.The 1st wheel carries the same contents as the existing
pex-<rev>.py2.py3-none-any.whlwheel and the 2nd wheel(
pex-<rev>.py3.py312-none-any.whl) ships without vendoredpip,setuptools,tomlortomlisince these are either unusable orun-needed under Python>=3.12.
Fixes #1526
Fixes #1527
Fixes #1528
Fixes #1877
Fixes #2731
Fixes #2785