There was an error while loading. Please reload this page.
1 parent 438014c commit 082bcf8Copy full SHA for 082bcf8
.github/workflows/wheel_tests_and_release.yml
@@ -80,7 +80,16 @@ jobs:
80
81
- name: Build wheels for CPython Mac OS
82
run: |
83
- export MACOSX_DEPLOYMENT_TARGET=12.0
+ if [[ "$CIBW_ARCHS_MACOS" == arm64 ]]; then
84
+ # SciPy requires 12.0 on arm to prevent kernel panics
85
+ # https://github.com/scipy/scipy/issues/14688
86
+ # so being conservative, we just do the same here
87
+ export MACOSX_DEPLOYMENT_TARGET=12.0
88
+ else
89
+ export MACOSX_DEPLOYMENT_TARGET=10.13
90
+ fi
91
+ echo MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET}
92
+
93
python -m cibuildwheel --output-dir dist
94
env:
95
CIBW_BUILD: ${{ matrix.cibw_python }}
0 commit comments