Skip to content

Commit

Permalink
Revert to macos-latest as missing Python versions were added back
Browse files Browse the repository at this point in the history
As described in actions/runner-images#9770, `macos-latest` was missing cached Python versions 3.9 and 3.10, forcing temporary use of `macos-13`. As the Python versions have been added, we can again use `macos-latest`.
  • Loading branch information
fjwillemsen committed May 17, 2024
1 parent 6ae81e7 commit e8fe56a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
build:
name: Test on ${{ matrix.os }} with all supported Python versions
runs-on: ${{ format('{0}', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov
runs-on: ${{ format('{0}-latest', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov

strategy:
matrix:
Expand Down

0 comments on commit e8fe56a

Please sign in to comment.