File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 4040# - os: windows-latest
4141# platform: PyPy
4242
43- - os : macos-latest
43+ - os : macos-14
4444 platform : all
4545
4646 - os : macos-13
@@ -112,8 +112,13 @@ jobs:
112112 run : |
113113 echo "CIBW_BUILD=cp39* cp310* cp311* cp312* cp313*" >> $GITHUB_ENV
114114 echo "CIBW_BEFORE_TEST_MACOS=pip install -r {project}/test-requirements.txt pytest" >> $GITHUB_ENV
115- echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV
116-
115+ if [ "${{ matrix.os }}" == "macos-13" ] \
116+ echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV; \
117+ elif [ "${{ matrix.os }}" == "macos-14" ] \
118+ echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV; \
119+ else \
120+ echo "Unknown macos version" && false; \
121+ fi
117122 - name : Overwrite for MacOs PyPy
118123 if : runner.os == 'MacOs' && matrix.platform == 'PyPy'
119124 run : |
You can’t perform that action at this time.
0 commit comments