From 99bb043234dc58caf93859dfac32c64323d9c706 Mon Sep 17 00:00:00 2001 From: Tom White Date: Wed, 1 May 2024 12:54:01 +0100 Subject: [PATCH] Don't use macos-latest when testing wheels since it now uses M1 which doesn't work with cyvcf2 --- .github/workflows/wheels.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index a1f16203b..a53cc3f7f 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -44,7 +44,8 @@ jobs: needs: ['build'] strategy: matrix: - os: [ubuntu-latest, macos-latest] + # don't use macos-latest as it uses M1 which doesn't work + os: [ubuntu-latest, macos-12] python-version: ["3.9", "3.10", "3.11"] runs-on: ${{ matrix.os }} steps: