Skip to content

Commit

Permalink
ensure macos x86_64 wheels get built on non-arm64 GH runner
Browse files Browse the repository at this point in the history
and allow PyPI uploader to skip existing wheels
  • Loading branch information
anthrotype committed Oct 18, 2024
1 parent 77b5c73 commit 440a0e2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest]
# macos-13 runners are still x86_64, macos-14 (latest) are arm64; we want to build
# the x86_64 wheel on/for x86_64 macs
os: [macos-13, windows-latest]
arch: [auto64]
build: ["*"]
# temporarily disable building wheels for PyPy until this gets fixed:
Expand Down Expand Up @@ -155,3 +157,4 @@ jobs:
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}
skip-existing: true

0 comments on commit 440a0e2

Please sign in to comment.