Skip to content

Commit 54af235

Browse files
committed
cibuildwheel: skip free-threaded builds for now, they are not supported fully by mypyc
1 parent 79e0294 commit 54af235

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ test-extras = "deps"
2424
build-verbosity = 1
2525
environment = { CWLTOOL_USE_MYPYC="1", MYPYPATH="$(pwd)/mypy-stubs" }
2626
# Disable building PyPy wheels on all platforms
27-
skip = "pp*"
27+
# Skip free-threaded builds, as mypyc does not support them yet
28+
# https://mypy.readthedocs.io/en/stable/changelog.html#mypyc-partial-unsafe-support-for-free-threading
29+
skip = ["pp*", "cp31?t-*"]
2830

2931
# Install system library
3032
[tool.cibuildwheel.linux]

0 commit comments

Comments
 (0)