Skip to content

Commit

Permalink
Merge pull request #74 from ssciwr/issue_73
Browse files Browse the repository at this point in the history
Fix #73
  • Loading branch information
renefritze authored Jul 9, 2024
2 parents 16fd26b + 2d0c941 commit 04f8441
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
arch: "x86_64"
use_qemu: false
skip:
- os: macos-11
- os: macos-14
arch: "arm64"
use_qemu: false
skip:
Expand All @@ -96,8 +96,15 @@ jobs:
uses: docker/[email protected]
if: runner.os == 'Linux' && ((matrix.use_qemu) && fromJSON(env.USE_QEMU))

- uses: actions/setup-python@v5
with:
python-version: 3.8
# the pre-installed python 3.8 isn't native and cannot produce ARM64 wheels
# see also https://github.com/pypa/cibuildwheel/pull/1871
if: runner.os == 'macOS' && runner.arch == 'arm64'

- name: Build wheels
uses: pypa/cibuildwheel@v2.16
uses: pypa/cibuildwheel@v2.19.2
if: (!matrix.use_qemu) || fromJSON(env.USE_QEMU)
env:
CIBW_ARCHS: "${{ matrix.arch }}"
Expand Down

0 comments on commit 04f8441

Please sign in to comment.