We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
packaging
1 parent 50a6756 commit 1a34cb5Copy full SHA for 1a34cb5
.github/workflows/main.yml
@@ -14,8 +14,9 @@ jobs:
14
with:
15
cache: "pip"
16
- name: Install pypa/build
17
- run: >-
18
- python3 -m pip install --user build twine
+ # We need a recent version of `packaging`, otherwise we encounter this bug:
+ # https://github.com/pypa/twine/issues/1216
19
+ run: python3 -m pip install --user build twine "packaging>=25.0"
20
- name: Build a binary wheel and a source tarball
21
run: python3 -m build
22
- name: Check the distribution files with `twine`
0 commit comments