Upgrade macOS wheels from macos-13 to macos-15-intel

This commit is contained in:
Andrew Murray 2025-09-20 20:24:34 +10:00
parent a28a8ae983
commit bbba5dbd21
2 changed files with 8 additions and 4 deletions

View File

@ -267,7 +267,11 @@ function build {
if [ -z "$IS_ALPINE" ] && [ -z "$SANITIZER" ] && [ -z "$IS_MACOS" ]; then if [ -z "$IS_ALPINE" ] && [ -z "$SANITIZER" ] && [ -z "$IS_MACOS" ]; then
yum remove -y zlib-devel yum remove -y zlib-devel
fi fi
if [[ -n "$IS_MACOS" ]]; then
CFLAGS="$CFLAGS -headerpad_max_install_names" build_zlib_ng
else
build_zlib_ng build_zlib_ng
fi
build_simple xcb-proto 1.17.0 https://xorg.freedesktop.org/archive/individual/proto build_simple xcb-proto 1.17.0 https://xorg.freedesktop.org/archive/individual/proto
if [[ -n "$IS_MACOS" ]]; then if [[ -n "$IS_MACOS" ]]; then

View File

@ -52,19 +52,19 @@ jobs:
include: include:
- name: "macOS 10.10 x86_64" - name: "macOS 10.10 x86_64"
platform: macos platform: macos
os: macos-13 os: macos-15-intel
cibw_arch: x86_64 cibw_arch: x86_64
build: "cp3{9,10,11}*" build: "cp3{9,10,11}*"
macosx_deployment_target: "10.10" macosx_deployment_target: "10.10"
- name: "macOS 10.13 x86_64" - name: "macOS 10.13 x86_64"
platform: macos platform: macos
os: macos-13 os: macos-15-intel
cibw_arch: x86_64 cibw_arch: x86_64
build: "cp3{12,13,14}*" build: "cp3{12,13,14}*"
macosx_deployment_target: "10.13" macosx_deployment_target: "10.13"
- name: "macOS 10.15 x86_64" - name: "macOS 10.15 x86_64"
platform: macos platform: macos
os: macos-13 os: macos-15-intel
cibw_arch: x86_64 cibw_arch: x86_64
build: "pp3*" build: "pp3*"
macosx_deployment_target: "10.15" macosx_deployment_target: "10.15"