-
-
Notifications
You must be signed in to change notification settings - Fork 30.5k
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
gh-109740: Use 't' in --disable-gil
SOABI
#109922
Conversation
Shared libraries for CPython 3.13 are now marked with a 't' for threading. For example, `binascii.cpython-313t-darwin.so`.
Notes for reviewers:
|
Misc/NEWS.d/next/Build/2023-09-26-16-00-50.gh-issue-109740.wboWdQ.rst
Outdated
Show resolved
Hide resolved
…WdQ.rst Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but i left a few minor suggestions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
I included my suggested changes to be able to merge your PR more quickly ;-) |
You need to regen configure. |
Oops. Otherwise, it would be too easy! Done. |
Thanks! |
Windows x64 unstable tests:
Should be already fixed by PR #109949.
I created issue #109974 for this failure. |
Good, it got merged after a few CI hiccups :-) |
Shared libraries for CPython 3.13 are now marked with a 't' for threading. For example, `binascii.cpython-313t-darwin.so`.
The test broke test_importlib on Windows: see issue gh-110359.
|
Shared libraries for CPython 3.13 are now marked with a 't' for threading. For example, `binascii.cpython-313t-darwin.so`.
Shared libraries for CPython 3.13
--disable-gil
builds are now marked with a 't' for threading. For example,binascii.cpython-313t-darwin.so
.--disable-gil
builds #109740