Skip to content

Commit 8ba79d9

Browse files
authored
Merge branch 'main' into fix/3777
2 parents 27cc909 + a443f76 commit 8ba79d9

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.readthedocs.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ python:
55
extra_requirements:
66
- doc
77

8+
sphinx:
9+
configuration: docs/conf.py
10+
811
# required boilerplate readthedocs/readthedocs.org#10401
912
build:
1013
os: ubuntu-lts-latest

newsfragments/4809.bugfix.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def _validate_py_limited_api(self) -> None:
284284
raise ValueError(
285285
f"`py_limited_api={self.py_limited_api!r}` not supported. "
286286
"`Py_LIMITED_API` is currently incompatible with "
287-
f"`Py_GIL_DISABLED` ({sys.abiflags=!r}). "
287+
"`Py_GIL_DISABLED`."
288288
"See https://github.com/python/cpython/issues/111506."
289289
)
290290

0 commit comments

Comments
 (0)