Skip to content

Commit 2e43e03

Browse files
committed
fix(ci): avoid overriding cibw skip
1 parent 8e58477 commit 2e43e03

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pyproject.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,14 @@ cmake.define = { BUILD_SHARED_LIBS = "OFF" }
118118

119119

120120
[tool.cibuildwheel]
121-
skip = ["pp*", "gp*"]
121+
# can't set `skip` here, since it's used in the gh workflow and would be overridden
122+
build = [
123+
"cp*-win_amd64",
124+
"cp*-win_arm64",
125+
"cp*-macosx_*",
126+
"cp*-manylinux_*",
127+
"cp*-musllinux_*",
128+
]
122129
build-verbosity = 1
123130
environment-pass = ["CI", "VCPKG_BINARY_SOURCES", "COPY_VCPKG_BINARY_PATH"]
124131

0 commit comments

Comments
 (0)