Skip to content

Commit 2d5f547

Browse files
authoredApr 23, 2024··
Pin 3.8 and 3.9 runners back to macos-13 (#6688)
1 parent f1bb07d commit 2d5f547

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

‎.github/workflows/run-tests.yml

+9
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ jobs:
1414
matrix:
1515
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"]
1616
os: [ubuntu-22.04, macOS-latest, windows-latest]
17+
# Python 3.8 and 3.9 do not run on macOS-latest which
18+
# is now using arm64 hardware.
19+
# https://github.com/actions/setup-python/issues/696#issuecomment-1637587760
20+
exclude:
21+
- { python-version: "3.8", os: "macos-latest" }
22+
- { python-version: "3.9", os: "macos-latest" }
23+
include:
24+
- { python-version: "3.8", os: "macos-13" }
25+
- { python-version: "3.9", os: "macos-13" }
1726

1827
steps:
1928
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0

0 commit comments

Comments
 (0)
Please sign in to comment.