Skip to content

Commit 9f95f7f

Browse files
committed
.
1 parent 7717bf1 commit 9f95f7f

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/pysplashsurf_CI.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,14 @@ jobs:
116116
strategy:
117117
matrix:
118118
platform:
119-
#- runner: macos-13
120-
# target: x86_64
119+
- runner: macos-13
120+
#target: x86_64
121+
python-version: ["cp312-macosx_x86_64"]
122+
macosx_deployment_target: "13.0"
121123
- runner: macos-14
122-
target: aarch64
123-
python-version: ["cp39-macosx_arm64"]
124+
#target: aarch64
125+
python-version: ["cp312-macosx_arm64"]
126+
macosx_deployment_target: "14.0"
124127
steps:
125128
- uses: actions/checkout@v4
126129
- name: Download stub artifact
@@ -136,10 +139,10 @@ jobs:
136139
- name: Build wheels
137140
run: cd pysplashsurf && python -m cibuildwheel --output-dir ../dist
138141
env:
139-
CIBW_BUILD: ${{ matrix.python-version }}
142+
CIBW_BUILD: ${{ matrix.platform.python-version }}
140143
CIBW_BEFORE_ALL: curl -sSf https://sh.rustup.rs | sh -s -- -y
141144
CIBW_ENVIRONMENT_MACOS: >-
142-
PATH=$HOME/.cargo/bin:$PATH MACOSX_DEPLOYMENT_TARGET="14.0"
145+
PATH=$HOME/.cargo/bin:$PATH MACOSX_DEPLOYMENT_TARGET=${{ matrix.platform.macosx_deployment_target }}
143146
# - name: Build wheels
144147
# uses: PyO3/maturin-action@v1
145148
# with:

0 commit comments

Comments
 (0)