Skip to content

Commit

Permalink
Set MACOSX_DEPLOYMENT_TARGET environment variable for real
Browse files Browse the repository at this point in the history
  • Loading branch information
pavoljuhas committed Sep 13, 2024
1 parent 2e4d98b commit c8c0601
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/testing_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
- os: macos-12 # x86_64
name: mac
env:
MACOSX_DEPLOYMENT_TARGET: "12.0"
macosx_deployment_target: "12.0"
cibw:
build: "cp39* cp310* cp311* cp312*"
- os: macos-13-large # Apple Silicon
name: mac_arm64
env:
MACOSX_DEPLOYMENT_TARGET: "13.0"
macosx_deployment_target: "13.0"
cibw:
build: "cp39* cp310* cp311* cp312*"
- os: ubuntu-20.04
Expand All @@ -41,6 +41,7 @@ jobs:
cibw:
build: "cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64"
env:
MACOSX_DEPLOYMENT_TARGET: "${{ matrix.env.macosx_deployment_target }}"
CIBW_BUILD: "${{ matrix.cibw.build || '*' }}"
CIBW_SKIP: "*musllinux*"
CIBW_ARCHS: "${{ matrix.cibw.arch || 'auto' }}"
Expand Down

0 comments on commit c8c0601

Please sign in to comment.