From 902502f6db45addeaa670c06cb8f06caaab3b272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20Gallou=C3=A9dec?= <45557362+qgallouedec@users.noreply.github.com> Date: Mon, 10 Jun 2024 10:56:52 +0200 Subject: [PATCH] fix ci macos --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f4177f5e..fdb71c91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,8 +7,12 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest, macos-13, windows-latest] python-version: ['3.7', '3.8', '3.9', '3.10'] + exclude: + # Exclude the combination of macOS-latest and Python 3.7 as arm64 doesn't support Python 3.7 + - os: macos-latest + python-version: '3.7' steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }}