From b30207a550a4e557bf5e3aa6e4fbb8d31fbde370 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Thu, 3 Oct 2024 13:35:30 +0200 Subject: [PATCH 1/2] ci.yml: Disable "fail fast" .. to better see if failure depends on architecture and/or Python version only --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af2b9b310..177b9cbd5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ jobs: build: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: python-version: ["3.7", "3.11", "3.12"] # no particular need for 3.9 or 3.10 os: [macos-latest, ubuntu-latest, windows-latest] From 168a49afdd75a773bd3150e56e982340035f417f Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Thu, 3 Oct 2024 13:49:09 +0200 Subject: [PATCH 2/2] ci.yml: Stop CI from trying Python 3.7 on arm64 macOS Symptom was this error: > Error: The version '3.7' with architecture 'arm64' was not found for macOS 14.6.1. > The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json Note that Python 3.7 is end-of life since 2023-06-27. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 177b9cbd5..92891dcf1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.11", "3.12"] # no particular need for 3.9 or 3.10 + python-version: ["3.8", "3.11", "3.12"] # no particular need for 3.9 or 3.10 os: [macos-latest, ubuntu-latest, windows-latest] steps: - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2