From e52e6476c8e363ce874768c711b0972e58bde7df Mon Sep 17 00:00:00 2001 From: AlexWells Date: Wed, 24 Apr 2024 09:49:30 +0100 Subject: [PATCH] Downgrade MacOS CI runners The current macos-latest tag points to macos-14, running on arm64. We currently can't support this architecture as it does not support Python3.7 --- .github/workflows/code.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 68d590bf..754ea617 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -53,12 +53,12 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-13] python: [cp37, cp38, cp39, cp310] include: # Put coverage and results files in the project directory for mac - - os: macos-latest + - os: macos-13 cov_file: "{project}/dist/coverage.xml" results_file: "{project}/dist/pytest-results.xml" # And for windows @@ -146,7 +146,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-13] python: [cp37, cp38, cp39, cp310] runs-on: ${{ matrix.os }}