From 90c0ff557e5824342d11a2f2882452921e8af471 Mon Sep 17 00:00:00 2001 From: Nick Smith Date: Tue, 20 Aug 2024 22:17:26 -0500 Subject: [PATCH] Use macos-13 only for py3.7 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e9d1ec..526336c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,12 +31,12 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.11", "3.12"] - runs-on: [ubuntu-latest, macos-13, windows-latest] + python-version: ["3.11", "3.12"] + runs-on: [ubuntu-latest, macos-latest, windows-latest] include: - - python-version: "3.12" - runs-on: macos-latest + - python-version: "3.7" + runs-on: [ubuntu-latest, macos-13, windows-latest] steps: - uses: actions/checkout@v4 with: