Update Python minor toolchain versions to allow smaller Python binaries #779
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.
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
Updates the Python toolchain versions for 3.8.13, 3.9, and 3.10. Adds 3.9.13 and 3.10.6. The
install_only
archives of 3.8.13, 3.9.13, and 3.10.6 are smaller than before, because the static libpython libraries and tests for the stdlib itself are removed from the archives. This is essentially equivalent to what we do in #758, but now in the python-build-standalone side. We can remove our own filtering introduced in #758 once the support of earlier versions than 3.8.13, 3.9.13, and 3.10.6 is dropped.For details of the toolchain side changes, see https://github.com/indygreg/python-build-standalone/releases/tag/20220802.
What is the current behavior?
Issue Number: N/A
For 3.9, 3.9.12 is installed.
For 3.10, 3.10.4 is installed.
What is the new behavior?
For 3.9, 3.9.13 is installed.
For 3.10, 3.10.6 is installed.
Does this PR introduce a breaking change?
When user sets
python_version = "3.9"
inpython_register_toolchains
, 3.9.13 is installed.When user sets
python_version = "3.10"
inpython_register_toolchains
, 3.10.6 is installed.Other information