Conversation
TingDaoK
approved these changes
Sep 24, 2026
This branch has not been deployed
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.
Python 3.15 GA is Oct 1, 2026.
Standard 3.15 already works,
cp313-abi3wheels cover it and cp315 has been added to relevant CI matrix to verify.Free-threaded 3.15t builds don't support
Py_LIMITED_APIso 3.15t failed to build. We migrated the free-threaded build to abi3t, the new stable ABI for free-threaded Python (Migration guide https://docs.python.org/3.15/howto/abi3t-migration.html ).The
cp315-abi3twheel will cover 3.15t+ in the same waycp313-abi3handles the non free-threaded versions.setup.py has been updated to define
Py_TARGET_ABI3Tand handle the abi3t wheel tag and.abi3t.sofilename manually (setuptools doesn't support abi3t yet).source/module.c added
PyModExporthook that abi3t requires behind#ifdef Py_TARGET_ABI3T.CD for 3.15 and 3.15t will wait on GA of Python 3.15.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.