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.
1 parent 4d80446 commit b27bcc7Copy full SHA for b27bcc7
.github/workflows/python-publish.yml
@@ -20,13 +20,11 @@ jobs:
20
- name: Install dependencies
21
run: |
22
python -m pip install --upgrade pip
23
- pip install setuptools --upgrade --force
24
- pip install wheel --upgrade --force
25
- pip install twine --upgrade --force
+ pip install setuptools wheel twine --upgrade --force
26
- name: Build and publish
27
env:
28
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
29
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
30
31
- python setup.py sdist bdist_wheel
+ python3 setup.py sdist bdist_wheel
32
twine upload dist/*
0 commit comments