Don't build free-threaded wheels (#19140)

Fixes https://github.com/element-hq/synapse/issues/19139.
This commit is contained in:
Andrew Morgan
2025-11-04 18:38:25 +01:00
committed by GitHub
parent 5d71034f81
commit 0cbb2a15e0
2 changed files with 3 additions and 1 deletions

View File

@@ -154,7 +154,8 @@ jobs:
# for, and so need extra build deps.
#
# cp39-*: Python 3.9 is EOL.
CIBW_TEST_SKIP: pp3*-* cp39-* *i686* *musl*
# cp3??t-*: Free-threaded builds are not currently supported.
CIBW_TEST_SKIP: pp3*-* cp39-* cp3??t-* *i686* *musl*
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:

1
changelog.d/19140.misc Normal file
View File

@@ -0,0 +1 @@
Update release scripts to prevent building wheels for free-threaded Python, as Synapse does not currently support it.