Skip to content

Commit 4963929

Browse files
committed
remove Windows from wheel build matrix
1 parent ebf48b4 commit 4963929

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/build_wheels.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [ubuntu-latest, macos-latest, windows-latest]
16+
os: [ubuntu-latest, macos-latest]
1717

1818
steps:
1919
- uses: actions/checkout@v4
@@ -23,11 +23,10 @@ jobs:
2323
# Build for Python 3.10, 3.11, 3.12
2424
CIBW_BUILD: "cp310-* cp311-* cp312-*"
2525
# Skip 32-bit builds and musl linux
26-
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux*"
26+
CIBW_SKIP: "*-manylinux_i686 *-musllinux*"
2727
# macOS: build both Intel and Apple Silicon
2828
CIBW_ARCHS_MACOS: "x86_64 arm64"
2929
CIBW_ARCHS_LINUX: "x86_64"
30-
CIBW_ARCHS_WINDOWS: "AMD64"
3130
# Build dependencies (pybind11 is needed at compile time)
3231
CIBW_BUILD_FRONTEND: "pip"
3332
# Test the built wheel

0 commit comments

Comments
 (0)