From a55dd83a98d98260c69127057768226f019322fd Mon Sep 17 00:00:00 2001 From: Konstantin Chernyshev Date: Wed, 24 Apr 2024 10:56:41 +0200 Subject: [PATCH 1/2] chore: update macos runners list --- .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 2db3f8d..b3dbdf1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,7 +61,7 @@ jobs: strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] - os: [ubuntu-latest, macos-latest, macos-14, windows-latest] # at the moment macos-14 is exclusive M1 chip + os: [ubuntu-latest, macos-latest, macos-13, windows-latest] # at the moment macos-latest=macos-14 is exclusive M1 chip, macos-13 is intel # macos-14 not supporting 3.8 and 3.9 exclude: - python-version: 3.8 From 8367bf861df08fcdcacf8abb44452e8ee1fea8d6 Mon Sep 17 00:00:00 2001 From: Konstantin Chernyshev Date: Wed, 24 Apr 2024 11:59:24 +0200 Subject: [PATCH 2/2] ci: for macos-13 get macos-latest artifacts --- .github/workflows/test.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b3dbdf1..7dabf27 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,12 +62,6 @@ jobs: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] os: [ubuntu-latest, macos-latest, macos-13, windows-latest] # at the moment macos-latest=macos-14 is exclusive M1 chip, macos-13 is intel - # macos-14 not supporting 3.8 and 3.9 - exclude: - - python-version: 3.8 - os: macos-14 - - python-version: 3.9 - os: macos-14 fail-fast: false name: Test wheel on ${{ matrix.os }} and Python ${{ matrix.python-version }} runs-on: ${{ matrix.os }} @@ -75,8 +69,8 @@ jobs: - uses: actions/checkout@v4 - uses: actions/download-artifact@v4 with: - # for macos-14 get macos-latest artifacts - name: wheels-${{ matrix.os == 'macos-14' && 'macos-latest' || matrix.os }} + # for macos-13 get macos-latest artifacts + name: wheels-${{ matrix.os == 'macos-13' && 'macos-latest' || matrix.os }} path: dist - name: Show dist files run: ls -lah ./dist