From 14bf92f681ffefe16daa2e884346d3452aa6ff9b Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 2 Oct 2023 13:09:02 -0400 Subject: [PATCH] wip: crazy --- .github/workflows/kit.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml index f285fe988..90d91ebed 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/kit.yml @@ -232,10 +232,13 @@ jobs: pypy3 -m pip install -r requirements/kit.pip - name: "Build wheel" + env: + DIST_EXTRA_CONFIG: extra.cfg run: | # 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--build-option=--python-tag -C--build-option=pp38.pp39.pp310 + echo -e "[bdist_wheel]\npython_tag=pp38.pp39.pp310" > $DIST_EXTRA_CONFIG + pypy3 -m build -w - name: "List wheels" run: |