Skip to content

Commit 62fe3f5

Browse files
authored
Temporarily change to macos-13 in test-python-package.yml
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.
1 parent d792304 commit 62fe3f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ on:
1717
jobs:
1818
build:
1919
name: Test on ${{ matrix.os }} with all supported Python versions
20-
runs-on: ${{ format('{0}-latest', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov
20+
runs-on: ${{ format('{0}', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov
2121

2222
strategy:
2323
matrix:
24-
os: [ubuntu, macos]
24+
os: [ubuntu-latest, macos-13]
2525

2626
steps:
2727
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)