Skip to content
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
matrix:
platform:
- { os: macos-14, target: aarch64-apple-darwin }
- { os: macos-13, target: x86_64-apple-darwin }
# Cross-compile the Intel wheel on the Apple-Silicon runner:
# GitHub's macos-13 (Intel) pool is deprecated and queues for hours,
# which stalled the whole Release (publish needs every build job).
- { os: macos-14, target: x86_64-apple-darwin }
- { os: ubuntu-latest, target: x86_64-unknown-linux-gnu, manylinux: auto }
- { os: ubuntu-latest, target: aarch64-unknown-linux-gnu, manylinux: auto }
- { os: windows-latest, target: x86_64-pc-windows-msvc }
Expand Down
Loading