Skip to content

Commit

Permalink
ci: fix macos-latest only supporting newer versions of Python
Browse files Browse the repository at this point in the history
  • Loading branch information
Ljzd-PRO committed May 15, 2024
1 parent 7dd9e1e commit f4351c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
# macos-14 aka. macos-latest has switched to being an ARM runner, only supporting newer versions of Python.
# https://github.com/actions/setup-python/issues/855#issuecomment-2096792205
os: [ubuntu-latest, windows-latest, macos-13] # Use macos-13
fail-fast: false

steps:
Expand Down

0 comments on commit f4351c4

Please sign in to comment.