We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c84fbb commit 804f46dCopy full SHA for 804f46d
1 file changed
.github/workflows/release.yaml
@@ -28,7 +28,6 @@ jobs:
28
pip install -r {project}/requirements-only-tests-min-locked.txt
29
CIBW_TEST_COMMAND: >-
30
pytest {project}/tests
31
- MACOSX_DEPLOYMENT_TARGET: "13.0"
32
strategy:
33
fail-fast: false
34
matrix:
@@ -57,6 +56,14 @@ jobs:
57
56
# TODO: figure out whether we need/want to use other compilers too
58
compiler: "gcc"
59
version: "13"
+ - name: Set deployment target - MacOS 13.0
60
+ if: ${{ matrix.os == 'macos-13' }}
61
+ run: |
62
+ echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV
63
+ - name: Set deployment target - MacOS 14.0
64
+ if: ${{ matrix.os == 'macos-14' }}
65
66
+ echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV
67
- name: Specify LLVM - windows-arm
68
if: ${{ matrix.os == 'windows-11-arm' }}
69
shell: pwsh
0 commit comments