From f34a3530db99227a9623892f8099a16616ffcfa3 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 30 Apr 2024 06:05:43 -0400 Subject: [PATCH] build: no longer need to force macOS 13 for 3.8 and 3.9 --- .github/workflows/coverage.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index cec49d559..7fd60783c 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -69,15 +69,13 @@ jobs: python-version: "pypy-3.9" - os: windows python-version: "pypy-3.10" - # GitHub is rolling out macos 14, but it doesn't have Python 3.8 or 3.9. - # https://mastodon.social/@hugovk/112320493602782374 - include: - - python-version: "3.8" - os: "macos" - os-version: "13" - - python-version: "3.9" - os: "macos" - os-version: "13" + # If we need to tweak the os version we can do it with an include like + # this: + # include: + # - python-version: "3.8" + # os: "macos" + # os-version: "13" + # If one job fails, stop the whole thing. fail-fast: true