Skip to content

Commit

Permalink
build: fix the pypy wheel arguments
Browse files Browse the repository at this point in the history
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.
  ********************************************************************************
```
  • Loading branch information
nedbat committed Oct 2, 2023
1 parent 7ec2c62 commit fe71c35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/kit.yml
Expand Up @@ -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: |
Expand Down

0 comments on commit fe71c35

Please sign in to comment.