diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-20 06:56:32 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-20 06:56:32 -0500 |
commit | 5c5caa2489bb939b4bbc2af474384f82a5da6407 (patch) | |
tree | 9623e4d348e2bb38321e8e58e7a4ad0bdf33e72f /.github | |
parent | 6e04e4f0b5eb8f88189e29283d930bd3b47ef198 (diff) | |
download | python-coveragepy-git-5c5caa2489bb939b4bbc2af474384f82a5da6407.tar.gz |
build: PyPy wheel now installs on 3.7, 3.8, and 3.9. #1510
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/kit.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml index f835786e..fd1b3a30 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/kit.yml @@ -78,6 +78,7 @@ jobs: # # PYVERSIONS. Available versions: # # https://github.com/actions/python-versions/blob/main/versions-manifest.json # # Include prereleases if they are at rc stage. + # # PyPy versions are handled further below in the "pypy" step. # pys = ["cp37", "cp38", "cp39", "cp310", "cp311"] # # # Some OS/arch combinations need overrides for the Python versions: @@ -217,8 +218,7 @@ jobs: - name: "Install PyPy" uses: actions/setup-python@v4 with: - # PYVERSIONS - python-version: "pypy-3.7" + python-version: "pypy-3.7" # Minimum of PyPy PYVERSIONS cache: pip cache-dependency-path: 'requirements/*.pip' @@ -228,9 +228,9 @@ jobs: - name: "Build wheel" run: | - # One wheel works for all PyPy versions. + # One wheel works for all PyPy versions. PYVERSIONS # yes, this is weird syntax: https://github.com/pypa/build/issues/202 - pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp36.pp37.pp38" + pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp37.pp38.pp39" - name: "List wheels" run: | |