From d4283fce4f51a3c4c0611f9de93757fac92889e7 Mon Sep 17 00:00:00 2001 From: Dmitry Meyer Date: Tue, 4 Jun 2024 19:07:10 +0000 Subject: [PATCH 1/2] CI: Use Intel macOS image macos-latest is MacOS 14 ARM64 now --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 23ac7bd..8faba83 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: - '3.12' os: - ubuntu-latest - - macos-latest + - macos-latest-large - windows-latest steps: - uses: actions/checkout@v3 From b9dc23b8b4d101084adfd72efda85549cb5b3c73 Mon Sep 17 00:00:00 2001 From: Dmitry Meyer Date: Tue, 4 Jun 2024 19:15:57 +0000 Subject: [PATCH 2/2] CI: Use older macOS 13 for Python 2.7-3.7 --- .github/workflows/test.yml | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8faba83..1565674 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,10 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: + os: + - ubuntu-latest + - macos-latest-large + - windows-latest python-version: - '2.7' - '3.6' @@ -23,10 +27,20 @@ jobs: - '3.10' - '3.11' - '3.12' - os: - - ubuntu-latest - - macos-latest-large - - windows-latest + exclude: + - os: macos-latest-large + python-version: '2.7' + - os: macos-latest-large + python-version: '3.6' + - os: macos-latest-large + python-version: '3.7' + include: + - os: macos-13 + python-version: '2.7' + - os: macos-13 + python-version: '3.6' + - os: macos-13 + python-version: '3.7' steps: - uses: actions/checkout@v3 - uses: MatteoH2O1999/setup-python@v3