Skip to content

Commit

Permalink
Don't build free-threaded wheels with cibuildwheel
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarbenjamin committed Aug 21, 2024
1 parent 93ccfda commit 3e5a696
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,15 @@ package = "flint"
[tool.cibuildwheel]
# requires-python needs to keep in sync with this and also the list of Python
# versions the wheels are tested against in CI.
build = "cp39-* cp310-* cp311-* cp312-* cp313-* cp313t-*"
build = "cp39-* cp310-* cp311-* cp312-* cp313-*"
skip = "*-win32 *-manylinux_i686 *-musllinux_*"

free-threaded-support = true
# This is needed for free-threaded wheels:
# build = "cp313t-*"
# free-threaded-support = true

manylinux-x86_64-image = "manylinux2014"
manylinux-i686-image = "manylinux2014"

test-command = "python -c \"import flint; print(str(flint.fmpz(2)))\""

[tool.cibuildwheel.linux.environment]
Expand Down

0 comments on commit 3e5a696

Please sign in to comment.