Skip to content

Commit

Permalink
Temporarily change to macos-13 in test-python-package.yml
Browse files Browse the repository at this point in the history
As described in [this issue](https://github.com/actions/setup-python/issues/852), the latest macOS GitHub action runner is missing Python dependencies. This temporarily reverts to an older version until this is fixed.
  • Loading branch information
fjwillemsen committed Apr 24, 2024
1 parent d792304 commit 62fe3f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ on:
jobs:
build:
name: Test on ${{ matrix.os }} with all supported Python versions
runs-on: ${{ format('{0}-latest', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov
runs-on: ${{ format('{0}', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov

strategy:
matrix:
os: [ubuntu, macos]
os: [ubuntu-latest, macos-13]

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 62fe3f5

Please sign in to comment.