From b1b2b8b25131dec6f563b122c63b418afe741690 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 1 May 2021 06:57:44 -0400 Subject: [PATCH] build: no more Windows 2.7? Microsoft removed the vcpython27 code (because 2.7 isn't supported anymore). Discussion here: https://community.chocolatey.org/packages/vcpython27 --- .github/workflows/coverage.yml | 3 +++ .github/workflows/testsuite.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 71b14c964..eab835fd6 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -39,6 +39,9 @@ jobs: # Windows PyPy doesn't seem to work? - os: windows-latest python-version: "pypy3" + # Microsoft removed vcpython27, so we can't do Windows 2.7 + - os: windows-latest + python-version: "2.7" # If one job fails, stop the whole thing. fail-fast: true diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 313e263e7..115ce80b4 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -38,6 +38,9 @@ jobs: # Windows PyPy doesn't seem to work? - os: windows-latest python-version: "pypy3" + # Microsoft removed vcpython27, so we can't do Windows 2.7 + - os: windows-latest + python-version: "2.7" fail-fast: false steps: