From 3d0069639740ab3b7fa646568cde924bcf199ab4 Mon Sep 17 00:00:00 2001 From: "Paul J. Dorn" Date: Thu, 25 Apr 2024 12:39:20 +0200 Subject: [PATCH] CI: revert macos-14 for Github runners --- .github/workflows/tox.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 308fab11..a2a013eb 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -14,7 +14,11 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] # All OSes pass except Windows because tests need Unix-only fcntl, grp, pwd, etc. + os: + - ubuntu-latest + # not defaulting to macos-latest: Python <= 3.9 was missing from macos-14 @ arm64 + - macos-13 + # Not testing Windows, because tests need Unix-only fcntl, grp, pwd, etc. python-version: # CPython <= 3.7 is EoL since 2023-06-27 - "3.7" @@ -26,6 +30,11 @@ jobs: # PyPy <= 3.8 is EoL since 2023-06-16 - "pypy-3.9" - "pypy-3.10" + include: + # Note: potentially "universal2" release + # https://github.com/actions/runner-images/issues/9741 + - os: macos-latest + python-version: "3.12" steps: - uses: actions/checkout@v4 - name: Using Python ${{ matrix.python-version }}