From 460c583cd7c0ff90f330c57582ebe625a703594d Mon Sep 17 00:00:00 2001 From: Lucien Luc Date: Fri, 31 Jan 2025 13:43:37 -0800 Subject: [PATCH] Remove python 3.7 from CI and use macOS-latest --- .github/workflows/run-unit-tests.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index 2e6dba9..7829c6d 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -16,11 +16,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, "3.10", 3.11] - # TODO: revert macOS-13 back to macOS-latest - # macOS-latest switched architectures and does not have older versions of python available - # https://github.com/actions/setup-python/issues/856 - os: [ubuntu-latest, macOS-13, windows-latest ] + python-version: [3.8, 3.9, "3.10", 3.11] + os: [ubuntu-latest, macOS-latest, windows-latest ] steps: - uses: actions/checkout@v2