Skip to content

Commit

Permalink
Try to fix main workflow (GH arch change in macOS-latest)
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed May 9, 2024
1 parent a057218 commit 22c0dd5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,16 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
py: ['3.7', '3.8', '3.9', '3.10', '3.11']
# NOTE On GH actions, macOS <=13 is Intel, whereas macOS >=14 will be ARM64
os: ['ubuntu-latest', 'macos-13', 'macos-14' 'windows-latest']
py: ['3.8', '3.9', '3.10', '3.11']
include:
- os: ubuntu-latest
wheel: dist/*manylinux_*_x86_64*.whl
- os: macos-latest
- os: macos-13
wheel: dist/*macosx_*_x86_64*.whl
- os: macos-14
wheel: dist/*macosx_*_arm64*.whl
- os: windows-latest
wheel: dist/*win_amd64.whl

Expand Down

0 comments on commit 22c0dd5

Please sign in to comment.