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