From 4012148a0734359af8c83246d43a191bd3c88e05 Mon Sep 17 00:00:00 2001 From: GalaxySnail Date: Thu, 5 Sep 2024 16:41:54 +0800 Subject: [PATCH] Drop python 3.7 support on macOS macos-latest is currently an alias for macOS 14 Arm64, and python 3.7 is already EOL, so drop it on macOS. [1] https://github.com/actions/runner-images/issues/9741 [2] https://github.com/actions/runner-images#available-images --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3942326..2205c6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,11 @@ jobs: - os: ubuntu-20.04 container: python:2.7-buster python-version: "2.7" + exclude: + - os: macos-latest + python-version: "3.7" + - os: macos-latest + python-version: "pypy-3.7" runs-on: ${{ matrix.os }} container: ${{ matrix.container }}