From d22af3362f8607b1ec5a7aa946da2209a4f19e82 Mon Sep 17 00:00:00 2001 From: Matt Wozniski Date: Thu, 20 Jun 2024 16:19:29 -0400 Subject: [PATCH] ci: Build macOS x86_64 wheels on macOS 13 Previously these were being built on macOS 11, but GitHub is dropping its macOS 11 runners. Upgrade to build these on macOS 13 instead (the latest version with free public Intel Mac runners). Because we leave `MACOSX_DEPLOYMENT_TARGET` set to 10.14, this should have no effect on the ABI of the built wheels. Signed-off-by: Matt Wozniski --- .github/workflows/build_wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 736cbb47e8..86e7c4b10a 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -125,7 +125,7 @@ jobs: strategy: matrix: include: - - os: macos-11 + - os: macos-13 arch: x86_64 - os: macos-14 arch: arm64