We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5a6c436 + d92a595 commit a443f76Copy full SHA for a443f76
newsfragments/4809.bugfix.rst
@@ -0,0 +1,2 @@
1
+Fixed crash generating error message printed when building wheels for the
2
+free-threaded build using the limited API. -- by :user:`ngoldbaum`
setuptools/command/bdist_wheel.py
@@ -294,7 +294,7 @@ def _validate_py_limited_api(self) -> None:
294
raise ValueError(
295
f"`py_limited_api={self.py_limited_api!r}` not supported. "
296
"`Py_LIMITED_API` is currently incompatible with "
297
- f"`Py_GIL_DISABLED` ({sys.abiflags=!r}). "
+ "`Py_GIL_DISABLED`."
298
"See https://github.com/python/cpython/issues/111506."
299
)
300
0 commit comments