From d4b837e98670dd18d6baf8a7624b728b568d5e57 Mon Sep 17 00:00:00 2001 From: Jo Bovy Date: Mon, 8 Apr 2024 09:34:09 -0400 Subject: [PATCH] Set runners used in wheels workflow explicitly, to make sure to create the 64bit mac wheel now that macos-latest is becoming M1 --- .github/workflows/wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 504d57667..bc86f0fb1 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -31,8 +31,8 @@ jobs: matrix: # Following numpy's setup buildplat: - - [ubuntu-latest, manylinux, x86_64] - - [macos-latest, macosx, x86_64] + - [ubuntu-22.04, manylinux, x86_64] + - [macos-12, macosx, x86_64] - [macos-14, macosx, arm64] - [windows-2019, win, amd64] python: ["cp38", "cp39", "cp310", "cp311", "cp312"]