Skip to content

Commit b27bcc7

Browse files
Python3
1 parent 4d80446 commit b27bcc7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/python-publish.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,11 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install setuptools --upgrade --force
24-
pip install wheel --upgrade --force
25-
pip install twine --upgrade --force
23+
pip install setuptools wheel twine --upgrade --force
2624
- name: Build and publish
2725
env:
2826
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
2927
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3028
run: |
31-
python setup.py sdist bdist_wheel
29+
python3 setup.py sdist bdist_wheel
3230
twine upload dist/*

0 commit comments

Comments
 (0)