[cibuildwheel] Skip free-threading Python on Windows

The builds for free-threading Python fail on Windows with the current
GHA infrastruture. I'm not sure why, and since we don't officially
support free-threading anyways, I'm not really inclined to debug it at
this time.
This commit is contained in:
Bryan Weber
2025-09-19 09:02:00 -05:00
committed by Ingmar Schoegl
parent 793008dc2c
commit 5513c89f78
+1 -1
View File
@@ -83,8 +83,8 @@ exclude = ["include", "lib", "share", "**.pyx", "cantera/CMakeLists.txt"]
[tool.cibuildwheel]
build-frontend = { name="build[uv]", args=["-vv"] }
skip = "*musllinux*"
archs = "auto64"
skip = ["*musllinux*", "cp3??t-win*"]
test-extras = ["pandas", "units", "graphviz"]
test-requires = ["pytest"]
manylinux-x86_64-image = "ghcr.io/cantera/cantera-base-manylinux_2_28-x86_64"