Skip to content

Commit

Permalink
github actions: fixes for trying to build all wheels using cibuildwheel
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenCzarnecki committed Oct 30, 2024
1 parent 1ffc6e0 commit ede7573
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
- name: Setup variables for aarch64
if: matrix.architecture == 'aarch64'
env:
CIBW_PLATFORM: "linux_aarch64"
CIBW_EMULATOR: "linux/aarch64"
run: |
echo "CIBW_PLATFORM=linux_aarch64" >> $GITHUB_ENV
echo "CIBW_EMULATOR=linux/aarch64" >> $GITHUB_ENV
- name: Build wheels with cibuildwheel
env:
Expand Down Expand Up @@ -63,6 +63,7 @@ jobs:
pip install cibuildwheel
- name: Set macOS Deployment Target
run: |
export MACOSX_DEPLOYMENT_TARGET=11.0
- name: Build wheels with cibuildwheel
Expand Down

0 comments on commit ede7573

Please sign in to comment.