From fdb49d663e92d633b5e182a2ddf2e627c0264255 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Wed, 8 May 2024 22:28:02 -0400 Subject: [PATCH] TST: extend GHA test matrix to current Python versions 3.6 is not available on the runners anymore. There is only limited Python support on macos runners --- .github/workflows/unittest.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 0ca4218..15cb042 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -10,11 +10,13 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.6", "3.7", "3.8", "3.9"] - exclude: - - os: macos-latest - python-version: "3.6" + os: [ubuntu-latest, windows-latest] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + include: + - os: macos-12 # This runner is on Intel chips. + python-version: 3.9 + - os: macos-14 # This runner is on M1 (arm64) chips. + python-version: '3.12' steps: - name: Checkout uses: actions/checkout@v1