Skip to content

Commit 5d877d5

Browse files
authored
Use older python versions for macos actions (#4601)
Use python versions that have a darwin/arm64 build for use with the newer (faster) macos actions runners
1 parent 0ad0a84 commit 5d877d5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/integration_tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,8 @@ jobs:
201201
strategy:
202202
fail-fast: false
203203
matrix:
204-
python-version: ["3.11.11", "3.12.8"]
204+
# Note: py311 version chosen due to available arm64 darwin builds.
205+
python-version: ["3.11.9", "3.12.8"]
205206
runs-on: macos-latest
206207
steps:
207208
- uses: actions/checkout@v4

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ jobs:
9292
strategy:
9393
fail-fast: false
9494
matrix:
95-
# Note: py39, py310 versions chosen due to available arm64 darwin builds.
96-
python-version: ["3.9.21", "3.10.16", "3.11.11", "3.12.8", "3.13.1"]
95+
# Note: py39, py310, py311 versions chosen due to available arm64 darwin builds.
96+
python-version: ["3.9.13", "3.10.11", "3.11.9", "3.12.8", "3.13.1"]
9797
runs-on: macos-latest
9898
steps:
9999
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)