From 6a1a51f0df0cbd004989309b0962c07e5bc720ea Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Tue, 23 Apr 2024 18:54:38 -0700 Subject: [PATCH] Fix broken GitHub Action due to GitHub update The error was `The version '3.7' with architecture 'arm64' was not found for macOS 14.4.1`. GitHub recently updated the `macos-latest` environment to `macos-14-arm64`, and Python 3.9 and earlier aren't available there. --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index e246d6f..848593a 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -24,7 +24,7 @@ jobs: - { name: linux-python3.12 , requirements: pinned , python-ver: "3.12", os: ubuntu-latest } - { name: windows-python3.7-minimum , requirements: minimum, python-ver: "3.7" , os: windows-latest } - { name: windows-python3.12 , requirements: pinned , python-ver: "3.12", os: windows-latest } - - { name: macos-python3.7-minimum , requirements: minimum, python-ver: "3.7" , os: macos-latest } + - { name: macos-python3.7-minimum , requirements: minimum, python-ver: "3.7" , os: macos-13 } - { name: macos-python3.12 , requirements: pinned , python-ver: "3.12", os: macos-latest } steps: - name: Checkout repo