Skip to content

Commit 45806db

Browse files
committed
update for minimum versions
Signed-off-by: Eli Uriegas <[email protected]>
1 parent 4a387eb commit 45806db

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/test-macos.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ jobs:
1313
unittests:
1414
strategy:
1515
matrix:
16-
python-version:
16+
include:
1717
# Test against the most popular version of Python (at the time of commit 40% of torch downloads use 3.8)
18-
- "3.8"
19-
runner: ["macos-12", "macos-m1-12"]
18+
- python-version: "3.8"
19+
runner: "macos-12"
20+
# Minimum version available for Apple Silicon is 3.9, so just use that
21+
- python-version: "3.9"
22+
runner: "macos-m1-12"
2023
fail-fast: false
2124
uses: pytorch/test-infra/.github/workflows/macos_job.yml@main
2225
with:

0 commit comments

Comments
 (0)