We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a387eb commit 45806dbCopy full SHA for 45806db
.github/workflows/test-macos.yml
@@ -13,10 +13,13 @@ jobs:
13
unittests:
14
strategy:
15
matrix:
16
- python-version:
+ include:
17
# 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"]
+ - python-version: "3.8"
+ 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"
23
fail-fast: false
24
uses: pytorch/test-infra/.github/workflows/macos_job.yml@main
25
with:
0 commit comments