summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-05-01 06:57:44 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-05-01 07:02:44 -0400
commitb1b2b8b25131dec6f563b122c63b418afe741690 (patch)
tree90c3fec6f4e5465645eece21a8a0430b7d9d9c48
parent78fa3d9db04889c1e4af445fa62b10502b063486 (diff)
downloadpython-coveragepy-git-b1b2b8b25131dec6f563b122c63b418afe741690.tar.gz
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
-rw-r--r--.github/workflows/coverage.yml3
-rw-r--r--.github/workflows/testsuite.yml3
2 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 71b14c96..eab835fd 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 313e263e..115ce80b 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: