Skip to content

Commit

Permalink
Fix CI (#1242)
Browse files Browse the repository at this point in the history
* ci.yml: Disable "fail fast"

.. to better see if failure depends on architecture and/or Python
version only

* 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.
  • Loading branch information
hartwork authored Oct 3, 2024
1 parent 1afbf71 commit b951457
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ 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
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
Expand Down

0 comments on commit b951457

Please sign in to comment.