From fe71c3560689cad5c5faab3d9abca404d809f15d Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 2 Oct 2023 12:15:35 -0400 Subject: [PATCH] build: fix the pypy wheel arguments This happened: ``` ******************************************************************************** The arguments ['--python-tag', 'pp38.pp39.pp310'] were given via `--global-option`. Please use `--build-option` instead, `--global-option` is reserved for flags like `--verbose` or `--quiet`. This deprecation is overdue, please update your project and remove deprecated calls to avoid build errors in the future. ******************************************************************************** ``` --- .github/workflows/kit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml index 847b98a4c..f285fe988 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/kit.yml @@ -235,7 +235,7 @@ jobs: 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="--global-option=--python-tag" -C="--global-option=pp38.pp39.pp310" + pypy3 -m build -w -C--build-option=--python-tag -C--build-option=pp38.pp39.pp310 - name: "List wheels" run: |