From 6aa39ee2d55a43803e1af7f58a1f2b371a00f8a8 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Mon, 28 Oct 2024 10:38:00 +0000 Subject: [PATCH] Update macOS CI configurations. --- .github/workflows/package-tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/package-tests.yml b/.github/workflows/package-tests.yml index 0052b0b..028dd10 100644 --- a/.github/workflows/package-tests.yml +++ b/.github/workflows/package-tests.yml @@ -29,8 +29,12 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-12, macos-latest, windows-latest] python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-2.7', 'pypy-3.9'] + exclude: + # macos-latest does not have Python 3.7 + - os: macos-latest + python-version: '3.7' steps: - uses: actions/checkout@v4