summaryrefslogtreecommitdiff
path: root/.github/workflows/kit.yml
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-11-09 04:55:40 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-11-09 04:55:40 -0500
commitd58e136066798d5c613c099e1ee6f77126a84f9e (patch)
tree08ca9292c8036514241f9a93c04d4389bffb3978 /.github/workflows/kit.yml
parent2afc907abac4fe413ac53e6854d433e1c03bf720 (diff)
downloadpython-coveragepy-git-d58e136066798d5c613c099e1ee6f77126a84f9e.tar.gz
build: one pypy wheel to rule them all
[skip actions]
Diffstat (limited to '.github/workflows/kit.yml')
-rw-r--r--.github/workflows/kit.yml9
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml
index 08b2e82b..fc454858 100644
--- a/.github/workflows/kit.yml
+++ b/.github/workflows/kit.yml
@@ -164,7 +164,7 @@ jobs:
path: dist/*.tar.gz
pypy:
- name: "Build PyPy wheels"
+ name: "Build PyPy wheel"
runs-on: ubuntu-latest
steps:
- name: "Check out the repo"
@@ -179,12 +179,11 @@ jobs:
run: |
pypy3 -m pip install -r requirements/kit.pip
- - name: "Build wheels"
+ - name: "Build wheel"
run: |
+ # One wheel works for all PyPy versions.
# 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"
- pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp37"
- pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp38"
+ pypy3 -m build -w -C="--global-option=--python-tag" -C="--global-option=pp36.pp37.pp38"
- name: "List wheels"
run: |