Skip to content

Commit eded3db

Browse files
[issue-815] fix CI for Python 3.7 on MacOS
Python 3.7 had to be removed completely as even the runner on older macos did not start. Signed-off-by: Armin Tänzer <armin.taenzer@tngtech.com>
1 parent 590bbfa commit eded3db

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/check_codestyle.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ 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
2427

2528
steps:
2629
- uses: actions/checkout@v3

.github/workflows/install_and_test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ 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
2124

2225
steps:
2326
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)