Skip to content

Commit

Permalink
Fix broken GitHub Action due to GitHub update
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rly authored Apr 24, 2024
1 parent 7489909 commit 6a1a51f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6a1a51f

Please sign in to comment.