Skip to content

Commit f4351c4

Browse files
committed
ci: fix macos-latest only supporting newer versions of Python
1 parent 7dd9e1e commit f4351c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/codecov.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ jobs:
3232
strategy:
3333
matrix:
3434
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
35-
os: [ubuntu-latest, windows-latest, macos-latest]
35+
# macos-14 aka. macos-latest has switched to being an ARM runner, only supporting newer versions of Python.
36+
# https://github.com/actions/setup-python/issues/855#issuecomment-2096792205
37+
os: [ubuntu-latest, windows-latest, macos-13] # Use macos-13
3638
fail-fast: false
3739

3840
steps:

0 commit comments

Comments
 (0)