-
Notifications
You must be signed in to change notification settings - Fork 504
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
Build failure on CPython 3.13t
(disabled GIL): would build wheel with unsupported tag
#813
Comments
Maybe this issue should be reported at setuptools/wheel/... so multiple abi levels can be build (e.g. cp35 for GIL enabled Python versions and cp313t (?) for GIL disabled Python). |
Please have a look at this comment on the |
The maintainers of |
Thanks for flagging. |
CPython 3.13 has added the
--disable-gil
build option for disabling the global interpreter lock. This introduces some ABI changes and therefore adds thet
(threading) ABI flag until those changes become the default in upcoming CPython releases.This ABI flag unfortunately breaks building pycryptodome wheels in this kind of environment.
The issue appears to be the
py-limited-api
bdist_wheel
configuration:The text was updated successfully, but these errors were encountered: