Skip to content

Commit d92656f

Browse files
committed
BUG: Correct mac Wheel OSX target
1 parent 9efd4f0 commit d92656f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

scripts/macpython-build-module-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ for VENV in "${VENVS[@]}"; do
3838

3939
if [[ $(arch) == "arm64" ]]; then
4040
plat_name="macosx-11.0-arm64"
41-
osx_target="10.9"
41+
osx_target="11.0"
4242
build_path="${SCRIPT_DIR}/../ITK-${py_mm}-macosx_x86_64"
4343
else
4444
plat_name="macosx-10.9-x86_64"
45-
osx_target="11.0"
45+
osx_target="10.9"
4646
build_path="${SCRIPT_DIR}/../ITK-${py_mm}-macosx_arm64"
4747
fi
4848

scripts/macpython-build-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ for VENV in "${VENVS[@]}"; do
6767
build_type="Release"
6868
if [[ $(arch) == "arm64" ]]; then
6969
plat_name="macosx-11.0-arm64"
70-
osx_target="10.9"
70+
osx_target="10.0"
7171
build_path="${SCRIPT_DIR}/../ITK-${py_mm}-macosx_x86_64"
7272
else
7373
plat_name="macosx-10.9-x86_64"
74-
osx_target="11.0"
74+
osx_target="10.9"
7575
build_path="${SCRIPT_DIR}/../ITK-${py_mm}-macosx_arm64"
7676
fi
7777
source_path=${SCRIPT_DIR}/../ITK-source/ITK

0 commit comments

Comments
 (0)