You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically this will allow the Python C extension to be forward compatible. This requires the Py_LIMITED_API macro to be set and the extension have the .abi3.so suffix.
I tried using the name_suffix but it is disabled for extension_module.
Maybe it is worth support it in python module? For example, a new option limited_api : '3.7' would set the limited api to python 3.7 and put the abi3.so suffix.
The text was updated successfully, but these errors were encountered:
Python documentation describing the limited API: https://docs.python.org/3/c-api/stable.html#stable-application-binary-interface
Basically this will allow the Python C extension to be forward compatible. This requires the
Py_LIMITED_API
macro to be set and the extension have the.abi3.so
suffix.I tried using the
name_suffix
but it is disabled forextension_module
.Maybe it is worth support it in python module? For example, a new option
limited_api : '3.7'
would set the limited api to python 3.7 and put theabi3.so
suffix.The text was updated successfully, but these errors were encountered: