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
This commit is contained in:
Masen Furer 2025-01-07 15:46:26 -08:00 committed by GitHub
parent 0ad0a84ee1
commit 5d877d54d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -201,7 +201,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11.11", "3.12.8"]
# Note: py311 version chosen due to available arm64 darwin builds.
python-version: ["3.11.9", "3.12.8"]
runs-on: macos-latest
steps:
- uses: actions/checkout@v4

View File

@ -92,8 +92,8 @@ jobs:
strategy:
fail-fast: false
matrix:
# Note: py39, py310 versions chosen due to available arm64 darwin builds.
python-version: ["3.9.21", "3.10.16", "3.11.11", "3.12.8", "3.13.1"]
# Note: py39, py310, py311 versions chosen due to available arm64 darwin builds.
python-version: ["3.9.13", "3.10.11", "3.11.9", "3.12.8", "3.13.1"]
runs-on: macos-latest
steps:
- uses: actions/checkout@v4