summaryrefslogtreecommitdiff
path: root/.github/workflows/kit.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/kit.yml')
-rw-r--r--.github/workflows/kit.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml
index dff56cda..99603087 100644
--- a/.github/workflows/kit.yml
+++ b/.github/workflows/kit.yml
@@ -114,9 +114,10 @@ jobs:
- name: "Build wheels"
run: |
- pypy3 setup.py bdist_wheel --python-tag pp36
- pypy3 setup.py bdist_wheel --python-tag pp37
- pypy3 setup.py bdist_wheel --python-tag pp38
+ # 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"
ls -al dist/
- name: "Upload wheels"