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.
2 parents 47237fa + 14c5fe0 commit 6459286Copy full SHA for 6459286
.github/workflows/main.yml
@@ -19,10 +19,21 @@ jobs:
19
- "3.9"
20
- "3.10"
21
- "3.11"
22
+ # Workaround from https://github.com/actions/runner-images/issues/9770
23
+ exclude: # Python < v3.8 does not support Apple Silicon ARM64.
24
+ - python: "3.6"
25
+ os: macos-latest
26
+ - python: "3.7"
27
28
+ include: # So run those legacy versions on Intel CPUs.
29
30
+ os: macos-13
31
32
33
steps:
- - uses: actions/checkout@v3
34
+ - uses: actions/checkout@v4
35
- name: Setup python
- uses: actions/setup-python@v4
36
+ uses: actions/setup-python@v5
37
with:
38
python-version: ${{ matrix.python }}
39
- name: Install tox
0 commit comments