Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,15 @@ jobs:
name: Binary wheels
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-11-arm # Windows arm64 wheels
- windows-latest # Windows x86-64 wheels
- ubuntu-latest # All linux wheels (via emulation)
- macos-15-intel # macOS x86-64 wheels
- macos-15 # macOS arm64 wheels
- windows-11-arm # Windows arm64 wheels
- windows-latest # Windows x86-64 wheels
- ubuntu-24.04 # Linux x86-64 wheels
- ubuntu-24.04-arm # Linux arm64 wheels
- macos-15-intel # macOS x86-64 wheels
- macos-15 # macOS arm64 wheels

steps:
- uses: actions/checkout@v5
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ docs = [
[dependency-groups]
dist = [
"build",
"cibuildwheel == 3.1.4",
"cibuildwheel == 3.3.1",
]

[build-system]
Expand All @@ -79,7 +79,7 @@ cmake.args = ["-GNinja"]
build.targets = ["zint_bindings"]
install.components = ["zint_bindings"]

cmake.version = ">=3.28"
cmake.version = ">=3.28,<4"
ninja.version = ">=1.11"
ninja.make-fallback = false

Expand Down