From da5f1859b3d0a695c3a0be7db3eb1e84c0c6948c Mon Sep 17 00:00:00 2001 From: Konstantin Chernyshev <38007247+k4black@users.noreply.github.com> Date: Wed, 24 Apr 2024 15:35:44 +0200 Subject: [PATCH] chore: update macos runners list (#43) * chore: update macos runners list * ci: for macos-13 get macos-latest artifacts --- .github/workflows/test.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2db3f8d..7dabf27 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,13 +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 - # macos-14 not supporting 3.8 and 3.9 - exclude: - - python-version: 3.8 - os: macos-14 - - python-version: 3.9 - os: macos-14 + os: [ubuntu-latest, macos-latest, macos-13, windows-latest] # at the moment macos-latest=macos-14 is exclusive M1 chip, macos-13 is intel 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