From a6021061d5f83d9b11b128e7a23d0898af719ab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20T=C3=A4nzer?= Date: Fri, 26 Jul 2024 12:44:18 +0200 Subject: [PATCH] [issue-815] fix CI for Python 3.7 on MacOS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Armin Tänzer --- .github/workflows/check_codestyle.yml | 6 ++++++ .github/workflows/install_and_test.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/check_codestyle.yml b/.github/workflows/check_codestyle.yml index 15dfd17f9..4cc16b9c1 100644 --- a/.github/workflows/check_codestyle.yml +++ b/.github/workflows/check_codestyle.yml @@ -21,6 +21,12 @@ jobs: matrix: os: [ ubuntu-latest, macos-latest, windows-latest ] python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] + exclude: # see https://github.com/actions/runner-images/issues/9770#issuecomment-2085623315 + - python-version: "3.7" + os: macos-latest + include: + - python-version: "3.7" + os: macos-13 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/install_and_test.yml b/.github/workflows/install_and_test.yml index 4884b9493..0f66cc73f 100644 --- a/.github/workflows/install_and_test.yml +++ b/.github/workflows/install_and_test.yml @@ -18,6 +18,12 @@ jobs: matrix: os: [ ubuntu-latest, macos-latest, windows-latest ] python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] + exclude: # see https://github.com/actions/runner-images/issues/9770#issuecomment-2085623315 + - python-version: "3.7" + os: macos-latest + include: + - python-version: "3.7" + os: macos-13 steps: - uses: actions/checkout@v3