Skip to content

Commit bbba5db

Browse files
committed
Upgrade macOS wheels from macos-13 to macos-15-intel
1 parent a28a8ae commit bbba5db

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/wheels-dependencies.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,11 @@ function build {
267267
if [ -z "$IS_ALPINE" ] && [ -z "$SANITIZER" ] && [ -z "$IS_MACOS" ]; then
268268
yum remove -y zlib-devel
269269
fi
270-
build_zlib_ng
270+
if [[ -n "$IS_MACOS" ]]; then
271+
CFLAGS="$CFLAGS -headerpad_max_install_names" build_zlib_ng
272+
else
273+
build_zlib_ng
274+
fi
271275

272276
build_simple xcb-proto 1.17.0 https://xorg.freedesktop.org/archive/individual/proto
273277
if [[ -n "$IS_MACOS" ]]; then

.github/workflows/wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@ jobs:
5252
include:
5353
- name: "macOS 10.10 x86_64"
5454
platform: macos
55-
os: macos-13
55+
os: macos-15-intel
5656
cibw_arch: x86_64
5757
build: "cp3{9,10,11}*"
5858
macosx_deployment_target: "10.10"
5959
- name: "macOS 10.13 x86_64"
6060
platform: macos
61-
os: macos-13
61+
os: macos-15-intel
6262
cibw_arch: x86_64
6363
build: "cp3{12,13,14}*"
6464
macosx_deployment_target: "10.13"
6565
- name: "macOS 10.15 x86_64"
6666
platform: macos
67-
os: macos-13
67+
os: macos-15-intel
6868
cibw_arch: x86_64
6969
build: "pp3*"
7070
macosx_deployment_target: "10.15"

0 commit comments

Comments
 (0)