From 53b3781fbb6d926ada37f511b21897290df93df8 Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Sun, 25 Jun 2023 11:16:14 -0400 Subject: [PATCH] Drop Python 2.7 from CI The setup-python action no longer supports Python 2.7: https://github.com/actions/setup-python/issues/672. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1a144e8..aca9917 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-20.04", "macos-latest"] - python: ["2.7", "pypy-2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.9"] + python: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.9"] include: - os: "windows-latest" python: "3.8"