There was an error while loading. Please reload this page.
1 parent 45c53ba commit 9b62841Copy full SHA for 9b62841
1 file changed
setuptools/tests/test_bdist_wheel.py
@@ -189,8 +189,10 @@
189
}
190
191
192
-if sys.platform != "win32":
193
- # ABI3 extensions don't really work on Windows
+if sys.platform != "win32" and not sysconfig.get_config_var("Py_GIL_DISABLED"):
+ # ABI3 extensions don't really work on Windows.
194
+ # Free-threaded builds also reject Py_LIMITED_API for now.
195
+ # See https://github.com/python/cpython/issues/146636 (PEP 803 / abi3t).
196
EXAMPLES["abi3extension-dist"] = {
197
"setup.py": cleandoc(
198
"""
0 commit comments