Skip to content

Commit 3e5a696

Browse files
committed
Don't build free-threaded wheels with cibuildwheel
1 parent 93ccfda commit 3e5a696

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pyproject.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,15 @@ package = "flint"
5757
[tool.cibuildwheel]
5858
# requires-python needs to keep in sync with this and also the list of Python
5959
# versions the wheels are tested against in CI.
60-
build = "cp39-* cp310-* cp311-* cp312-* cp313-* cp313t-*"
60+
build = "cp39-* cp310-* cp311-* cp312-* cp313-*"
6161
skip = "*-win32 *-manylinux_i686 *-musllinux_*"
6262

63-
free-threaded-support = true
63+
# This is needed for free-threaded wheels:
64+
# build = "cp313t-*"
65+
# free-threaded-support = true
6466

6567
manylinux-x86_64-image = "manylinux2014"
6668
manylinux-i686-image = "manylinux2014"
67-
6869
test-command = "python -c \"import flint; print(str(flint.fmpz(2)))\""
6970

7071
[tool.cibuildwheel.linux.environment]

0 commit comments

Comments
 (0)