summaryrefslogtreecommitdiff
path: root/.github/workflows/coverage.yml
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-12-31 09:17:07 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-12-31 12:12:02 -0500
commit39f8f3ed43cf82cdf30b57d7f9624addcbd9e372 (patch)
tree8a217a88ce2c1a52c53d6901aa88a44f9fe287d7 /.github/workflows/coverage.yml
parentc2773105682ee01b5ebfe5d29e86a9634d02b053 (diff)
downloadpython-coveragepy-git-39f8f3ed43cf82cdf30b57d7f9624addcbd9e372.tar.gz
build: drop Python 3.6 support
Diffstat (limited to '.github/workflows/coverage.yml')
-rw-r--r--.github/workflows/coverage.yml9
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 9385ff5f..8ab85e1f 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -32,21 +32,20 @@ jobs:
- windows-latest
python-version:
# When changing this list, be sure to check the [gh-actions] list in
- # tox.ini so that tox will run properly.
- - "3.6"
+ # tox.ini so that tox will run properly. PYVERSIONS
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11.0-alpha.2"
- - "pypy3"
+ - "pypy-3.7"
exclude:
# Windows PyPy doesn't seem to work?
- os: windows-latest
- python-version: "pypy3"
+ python-version: "pypy-3.7"
# Mac PyPy always takes the longest, and doesn't add anything.
- os: macos-latest
- python-version: "pypy3"
+ python-version: "pypy-3.7"
# If one job fails, stop the whole thing.
fail-fast: true