Skip to content

Commit a6175a4

Browse files
committed
fix(ci): macOS CI failing with python{3.7, 3.8, 3.9}
Problem: macos-latest now points to M1 runners (macos-14-arm64) which do not support python 3.7 - 3.9. Solution: For these python versions, use the macos-12 (x86_64) runner.
1 parent 648b0c7 commit a6175a4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test.yml

+12
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,21 @@ jobs:
3232
exclude:
3333
- os: 'ubuntu-latest'
3434
python-version: '3.7'
35+
- os: 'macos-latest'
36+
python-version: '3.7'
37+
- os: 'macos-latest'
38+
python-version: '3.8'
39+
- os: 'macos-latest'
40+
python-version: '3.9'
3541
include:
3642
- os: 'ubuntu-20.04'
3743
python-version: '3.7'
44+
- os: 'macos-12'
45+
python-version: '3.7'
46+
- os: 'macos-12'
47+
python-version: '3.8'
48+
- os: 'macos-12'
49+
python-version: '3.9'
3850

3951
name: "test (python ${{ matrix.python-version }}, ${{ matrix.os }})"
4052
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)