Skip to content

Commit 04441e2

Browse files
[issue-815] fix CI for Python 3.7 on MacOS
Signed-off-by: Armin Tänzer <armin.taenzer@tngtech.com>
1 parent 6f60422 commit 04441e2

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/check_codestyle.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
matrix:
2222
os: [ ubuntu-latest, macos-latest, windows-latest ]
2323
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
24+
exclude: # see https://github.com/actions/runner-images/issues/9770#issuecomment-2085623315
25+
- python-version: "3.7"
26+
os: macos-latest
27+
include:
28+
- python-version: "3.7"
29+
os: macos-13
2430

2531
steps:
2632
- uses: actions/checkout@v3

.github/workflows/install_and_test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
matrix:
1919
os: [ ubuntu-latest, macos-latest, windows-latest ]
2020
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
21+
exclude: # see https://github.com/actions/runner-images/issues/9770#issuecomment-2085623315
22+
- python-version: "3.7"
23+
os: macos-latest
24+
include:
25+
- python-version: "3.7"
26+
os: macos-13
2127

2228
steps:
2329
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)