File tree Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 35
35
continue-on-error : ${{ matrix.zmq == 'head' }}
36
36
37
37
env :
38
- MACOSX_DEPLOYMENT_TARGET : " 11 .7"
38
+ MACOSX_DEPLOYMENT_TARGET : " 13 .7"
39
39
40
40
strategy :
41
41
fail-fast : true
Original file line number Diff line number Diff line change 62
62
name : wheel-${{ matrix.name }}
63
63
64
64
env :
65
- MACOSX_DEPLOYMENT_TARGET : " 10.9 "
65
+ MACOSX_DEPLOYMENT_TARGET : " 10.15 "
66
66
CIBW_BUILD : " ${{ matrix.cibw.build || '*' }}"
67
67
CIBW_SKIP : " ${{ matrix.cibw.skip || '' }}"
68
68
CIBW_ARCHS : " ${{ matrix.cibw.arch || 'auto' }}"
Original file line number Diff line number Diff line change @@ -165,9 +165,8 @@ before-all = "bash tools/install_libzmq.sh"
165
165
repair-wheel-command = " delocate-wheel --sanitize-rpaths --require-archs {delocate_archs} -w {dest_dir} -v {wheel}"
166
166
167
167
[tool .cibuildwheel .macos .environment ]
168
- # note: everything here needs to also be duplicated in overrides below
169
168
ZMQ_PREFIX = " /tmp/zmq"
170
- MACOSX_DEPLOYMENT_TARGET = " 10.9 "
169
+ MACOSX_DEPLOYMENT_TARGET = " 10.15 "
171
170
172
171
[tool .cibuildwheel .windows ]
173
172
before-all = " python buildutils/bundle.py licenses"
@@ -190,10 +189,6 @@ repair-wheel-command = """\
190
189
"cmake.define.ZMQ_HAVE_IPC" = " OFF"
191
190
"cmake.define.POLLER" = " select"
192
191
193
- # mac-arm target is 10.15
194
- [[tool .cibuildwheel .overrides ]]
195
- select = " *macos*{universal2,arm64}*"
196
- environment = { ZMQ_PREFIX = " /tmp/zmq" , MACOSX_DEPLOYMENT_TARGET = " 10.15" }
197
192
198
193
# manylinux2010 for (less) old cp37-9, pp37-8
199
194
[[tool .cibuildwheel .overrides ]]
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ LICENSE_DIR="$PYZMQ_DIR/licenses"
8
8
test -d " $LICENSE_DIR " || mkdir " $LICENSE_DIR "
9
9
10
10
if [[ " $( uname) " == " Darwin" ]]; then
11
+ # make sure deployment target is set
12
+ echo " ${MACOSX_DEPLOYMENT_TARGET=} "
13
+ test ! -z " ${MACOSX_DEPLOYMENT_TARGET} "
11
14
# need LT_MULTI_MODULE or libtool will strip out
12
15
# all multi-arch symbols at the last step
13
16
export LT_MULTI_MODULE=1
You can’t perform that action at this time.
0 commit comments