Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-14, macos-13, windows-latest] # Use specific versions for clarity
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-latest, macos-15-intel, windows-latest] # Use specific versions for clarity
arch: [x86_64, arm64]
pybuilds: [cp38, cp39, cp310, cp311, cp312] # Define pybuilds at the top level
exclude:
- os: ubuntu-24.04-arm # No need to specify arch, it's already implicit
arch: x86_64 # Exclude x86_64 on ARM
- os: macos-14 # Exclude macOS 14 (Sonoma)
- os: macos-latest
arch: x86_64 # Exclude x86_64 explicitly
- os: macos-14 # Exclude cp38
- os: macos-latest # Exclude cp38
pybuilds: cp38
- os: macos-13 # Exclude macOS 13 (Ventura) - arm64
- os: macos-15-intel
arch: arm64 # Exclude arm64 on macOS 13
- os: macos-13
- os: macos-15-intel
pybuilds: cp38

name: >
Expand Down
Loading