From 380a2c2f9fe0c5c7edda9727adcaaa7fb7d6dc5e Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Mon, 23 Sep 2024 17:28:25 +0200 Subject: [PATCH] Update tests.yml to only use macos-13 --- .github/workflows/tests.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c28ab35..a3cbb32 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,14 +13,14 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, macos-13] python-version: ["3.7", "3.10"] - exclude: # Python < v3.8 does not support Apple Silicon ARM64. - - python-version: "3.7" - os: macos-latest - include: # So run those legacy versions on Intel CPUs. - - python-version: "3.7" - os: macos-13 + # exclude: # Python < v3.8 does not support Apple Silicon ARM64. + # - python-version: "3.7" + # os: macos-latest + # include: # So run those legacy versions on Intel CPUs. + # - python-version: "3.7" + # os: macos-13 steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }}