From 654860a7208d6567186f01cab4a8365976bdffa7 Mon Sep 17 00:00:00 2001 From: BenjaminBossan Date: Tue, 18 Jun 2024 10:49:24 +0200 Subject: [PATCH] CI Use latest MacOS in test matrix We switched to MacOS 12 in #1680 because latest MacOS was moved to use the ARM Macs, which were not provided for Python 3.8 and 3.9. This should have been fixed by now. Of course, this means that CI no longer checks Intel Macs, but I think ARM Macs will be more relevant for most users. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 01735fef68..abbc188c9c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,7 +33,7 @@ jobs: strategy: matrix: python-version: ["3.8", "3.9", "3.10", "3.11"] - os: ["ubuntu-latest", "macos-12", "windows-latest"] + os: ["ubuntu-latest", "macos-latest", "windows-latest"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3