Skip to content

Commit 382b508

Browse files
committed
Fix typo that messed up ternary
1 parent d324e3b commit 382b508

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@ jobs:
128128
# We need this because our minimum is 10.11, different from default
129129
# of 10.9 on x86s
130130
# Related issue: https://github.com/pypa/cibuildwheel/issues/952
131-
_PYTHON_HOST_PLATFORM: ${{ matrix.marcharch == 'x86_64' && 'macosx-10.11-x86_64' || 'macosx-11.0-arm64'}}
131+
_PYTHON_HOST_PLATFORM: ${{ matrix.macarch == 'x86_64' && 'macosx-10.11-x86_64' || 'macosx-11.0-arm64'}}
132132

133133
# Similarly, we need to tell CIBW that the wheel's linking steps
134134
# should be for 10.11 on x86
135-
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.marcharch == 'x86_64' && '10.11' || '11.0' }}
135+
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macarch == 'x86_64' && '10.11' || '11.0' }}
136136

137137
CIBW_BUILD: ${{ matrix.pyversions }}
138138

0 commit comments

Comments
 (0)