From 44a7367a03da8ea5d503d0dc52b1363dad3a517c Mon Sep 17 00:00:00 2001 From: Luktug Ltd Date: Wed, 24 Jul 2024 23:20:47 +0100 Subject: [PATCH] Update github build-script Issues with macos-14 arm builds --- .github/workflows/pythonpublish.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 5132ba5..2f914f1 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -12,12 +12,21 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12'] - os: [ubuntu-latest, macos-latest, macos-13, windows-latest] + python-version: [3.8, 3.9, '3.10', '3.11', '3.12'] + os: [ubuntu-latest, macos-14, macos-13, windows-latest] exclude: - os: ubuntu-latest python-version: '3.12' + - os: macos-14 + python-version: 3.7 + - os: macos-14 + python-version: 3.8 + - os: macos-14 + python-version: 3.9 + - os: macos-14 + python-version: '3.10' steps: - uses: actions/checkout@v2 - name: Set up Python