From e85ded53687545635b022324d38cd75391c1a4a4 Mon Sep 17 00:00:00 2001 From: "Adam J. Jackson" Date: Tue, 16 Jul 2024 15:17:32 +0100 Subject: [PATCH] Build on mac-13 (latest intel Mac builder) We are running into trouble building Numpy on the ARM Mac builders. This seems to be related to Numpy's openblas configuration; older Numpy versions didn't easily build on ARM Mac. Soon we will drop Py 3.8 / 3.9 and the problem should go away... --- .github/workflows/build_upload_pypi_wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_upload_pypi_wheels.yml b/.github/workflows/build_upload_pypi_wheels.yml index c981b6ff7..37bc72676 100644 --- a/.github/workflows/build_upload_pypi_wheels.yml +++ b/.github/workflows/build_upload_pypi_wheels.yml @@ -9,12 +9,12 @@ jobs: build: strategy: matrix: - os: [windows-latest, macos-latest, ubuntu-latest] + os: [windows-latest, macos-13, ubuntu-latest] python-version: ['3.8', '3.9', '3.10', '3.11'] include: - os: windows-latest wheelname: win - - os: macos-latest + - os: macos-13 wheelname: macos - os: ubuntu-latest wheelname: manylinux