Skip to content

Commit a7bd594

Browse files
authored
Skip free threaded builds in cibuildwheel (#4829)
1 parent 862dee9 commit a7bd594

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,13 @@ build-verbosity = 1
157157
# - Architecture (64-bit only): amd64 / x86_64, universal2, and arm64
158158
# - OS: Linux (no musl), Windows, and macOS
159159
build = "cp3*"
160-
skip = ["*-manylinux_i686", "*-musllinux_*", "*-win32", "pp*"]
160+
skip = [
161+
"*-manylinux_i686",
162+
"*-musllinux_*",
163+
"*-win32",
164+
"pp*",
165+
"cp31?t-*", # mypyc doesn't have great support for free threaded builds
166+
]
161167

162168
# This is the bare minimum needed to run the test suite. Pulling in the full
163169
# test_requirements.txt would download a bunch of other packages not necessary

0 commit comments

Comments
 (0)