From cb62e6a0f03c11c64296b469bd6bffaee7c2f92d Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sat, 21 Jun 2025 19:20:07 +0800 Subject: [PATCH] Correct the OS image definitions for iOS CI runs. --- .github/workflows/wheels.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9a62016a7..a0dc61a9d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -95,17 +95,17 @@ jobs: manylinux: "manylinux_2_28" - name: "iOS arm64 device" platform: ios - os: macos-13 + os: macos-latest cibw_arch: arm64_iphoneos iphoneos_deployment_target: "13.0" - name: "iOS arm64 simulator" platform: ios - os: macos-13 + os: macos-latest cibw_arch: arm64_iphonesimulator iphoneos_deployment_target: "13.0" - name: "iOS x86_64 simulator" platform: ios - os: macos-latest + os: macos-13 cibw_arch: x86_64_iphonesimulator iphoneos_deployment_target: "13.0" steps: