File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -112,12 +112,14 @@ 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- 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; \
115+ if [ "${{ matrix.os }}" == "macos-13" ] then
116+ echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV;
117+ echo "Enforcing target deployment for 13.0"
118+ elif [ "${{ matrix.os }}" == "macos-14" ] then
119+ echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV;
120+ echo "Enforcing target deployment for 14.0"
121+ else
122+ echo "Unknown macos version" && false;
121123 fi
122124 - name : Overwrite for MacOs PyPy
123125 if : runner.os == 'MacOs' && matrix.platform == 'PyPy'
You can’t perform that action at this time.
0 commit comments