From 720206578a8daf1e7167200e73e314fc4b8af52e Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Sat, 11 May 2024 13:08:17 -0400 Subject: [PATCH] Update CI setup macos-latest runs on arm64, and Python 3.6 / Python 3.7 are not available for that architecture. --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 810092f..2110482 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,13 +24,18 @@ jobs: python: "3.11" - os: "windows-latest" python: "3.12" + exclude: + - os: "macos-latest" + python: "3.6" + - os: "macos-latest" + python: "3.7" runs-on: ${{ matrix.os }} name: "Test: Python ${{ matrix.python }} on ${{ matrix.os }}" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} allow-prereleases: true