We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebf48b4 commit 4963929Copy full SHA for 4963929
1 file changed
.github/workflows/build_wheels.yml
@@ -13,7 +13,7 @@ jobs:
13
strategy:
14
fail-fast: false
15
matrix:
16
- os: [ubuntu-latest, macos-latest, windows-latest]
+ os: [ubuntu-latest, macos-latest]
17
18
steps:
19
- uses: actions/checkout@v4
@@ -23,11 +23,10 @@ jobs:
23
# Build for Python 3.10, 3.11, 3.12
24
CIBW_BUILD: "cp310-* cp311-* cp312-*"
25
# Skip 32-bit builds and musl linux
26
- CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux*"
+ CIBW_SKIP: "*-manylinux_i686 *-musllinux*"
27
# macOS: build both Intel and Apple Silicon
28
CIBW_ARCHS_MACOS: "x86_64 arm64"
29
CIBW_ARCHS_LINUX: "x86_64"
30
- CIBW_ARCHS_WINDOWS: "AMD64"
31
# Build dependencies (pybind11 is needed at compile time)
32
CIBW_BUILD_FRONTEND: "pip"
33
# Test the built wheel
0 commit comments