Skip to content

Commit 4d80446

Browse files
Test
1 parent 55819c1 commit 4d80446

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/python-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install setuptools wheel twine
23+
pip install setuptools --upgrade --force
24+
pip install wheel --upgrade --force
25+
pip install twine --upgrade --force
2426
- name: Build and publish
2527
env:
2628
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
2729
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
2830
run: |
29-
pip uninstall -y wheel
3031
python setup.py sdist bdist_wheel
3132
twine upload dist/*

0 commit comments

Comments
 (0)