We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b485d4f commit ffcdc16Copy full SHA for ffcdc16
1 file changed
.github/workflows/build.yml
@@ -23,12 +23,6 @@ jobs:
23
with:
24
python-version: ${{ matrix.python-version }}
25
26
- - name: Retrieve wheels
27
- uses: actions/download-artifact@v4
28
- with:
29
- merge-multiple: true
30
- path: wheels
31
-
32
- name: Set up Python ${{ matrix.python-version }}
33
uses: actions/setup-python@v5
34
@@ -37,6 +31,8 @@ jobs:
37
- name: List and check wheels
38
shell: bash
39
run: |
+ # Pin transitive dependency on pkginfo until https://github.com/pypa/twine/issues/1070 is
35
+ # fixed
40
36
pip install twine pkginfo>=1.10.0
41
${{ matrix.ls || 'ls -lh' }} wheels/
42
twine check wheels/*
@@ -64,6 +60,6 @@ jobs:
64
60
ls -lAs wheels/
65
61
66
62
- name: Upload to PyPI
67
- uses: pypa/gh-action-pypi-publish@release/v1.9
63
+ uses: pypa/gh-action-pypi-publish@release/v1
68
69
packages_dir: wheels/
0 commit comments