summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-01-15 13:58:03 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-01-15 14:01:33 -0500
commit7fec9566c74d46b95f6a741a59e66e136cc5b158 (patch)
treef182a864a3a63b4674ae7a12bf8aeedb26e2f22a
parente3be855a07685b383f020e2f0f2924326cb48268 (diff)
downloadpython-coveragepy-git-7fec9566c74d46b95f6a741a59e66e136cc5b158.tar.gz
build: better docs about Python versions in actions
-rw-r--r--.github/workflows/coverage.yml2
-rw-r--r--.github/workflows/kit.yml11
-rw-r--r--.github/workflows/testsuite.yml2
3 files changed, 14 insertions, 1 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 8ab85e1f..8d3e1a90 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -33,6 +33,8 @@ jobs:
python-version:
# When changing this list, be sure to check the [gh-actions] list in
# tox.ini so that tox will run properly. PYVERSIONS
+ # Available versions:
+ # https://github.com/actions/python-versions/blob/main/versions-manifest.json
- "3.7"
- "3.8"
- "3.9"
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml
index af3a6bea..1948e7ac 100644
--- a/.github/workflows/kit.yml
+++ b/.github/workflows/kit.yml
@@ -50,13 +50,20 @@ jobs:
# [[[cog
# #----- vvv Choices for the matrix vvv -----
#
+ # # Operating systems:
# oss = ["ubuntu", "macos", "windows"]
+ #
+ # # For each OS, what arch to use with cibuildwheel:
# os_archs = {
# "ubuntu": ["x86_64", "i686", "aarch64"],
# "macos": ["arm64", "x86_64"],
# "windows": ["x86", "AMD64"],
# }
- # pys = ["cp37", "cp38", "cp39", "cp310"] # PYVERSIONS
+ # # PYVERSIONS. Available versions:
+ # # https://github.com/actions/python-versions/blob/main/versions-manifest.json
+ # pys = ["cp37", "cp38", "cp39", "cp310"]
+ #
+ # # Some OS/arch combinations need overrides for the Python versions:
# os_arch_pys = {
# ("macos", "arm64"): ["cp38", "cp39", "cp310"],
# }
@@ -228,6 +235,8 @@ jobs:
- windows
- macos
py:
+ # PYVERSIONS. Available versions:
+ # https://github.com/actions/python-versions/blob/main/versions-manifest.json
- "3.11.0-alpha.2"
fail-fast: false
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml
index 54859b25..f04699ad 100644
--- a/.github/workflows/testsuite.yml
+++ b/.github/workflows/testsuite.yml
@@ -33,6 +33,8 @@ jobs:
python-version:
# When changing this list, be sure to check the [gh-actions] list in
# tox.ini so that tox will run properly. PYVERSIONS
+ # Available versions:
+ # https://github.com/actions/python-versions/blob/main/versions-manifest.json
- "3.7"
- "3.8"
- "3.9"