We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e0294 commit 54af235Copy full SHA for 54af235
pyproject.toml
@@ -24,7 +24,9 @@ test-extras = "deps"
24
build-verbosity = 1
25
environment = { CWLTOOL_USE_MYPYC="1", MYPYPATH="$(pwd)/mypy-stubs" }
26
# Disable building PyPy wheels on all platforms
27
-skip = "pp*"
+# 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-*"]
30
31
# Install system library
32
[tool.cibuildwheel.linux]
0 commit comments