Skip to content

Commit 0404b66

Browse files
authored
Update pypi-upload.yml
adding packaging explicitly
1 parent 7dc5367 commit 0404b66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pypi-upload.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
21-
pip install setuptools wheel twine
21+
pip install setuptools wheel twine packaging
2222
- name: Build and publish to pypi.org
2323
env:
2424
TWINE_USERNAME: ${{ secrets.GLOBAL_PYPI_USERNAME }}
2525
TWINE_PASSWORD: ${{ secrets.GLOBAL_PYPI_PASSWORD }}
2626
DAEPLOY_RELEASE_VERSION: ${{ github.event.release.tag_name }}
2727
run: |
2828
python setup.py bdist_wheel
29-
twine upload dist/*
29+
twine upload dist/*

0 commit comments

Comments
 (0)