We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 892637f commit 29f249aCopy full SHA for 29f249a
.github/workflows/python-publish.yml
@@ -19,12 +19,12 @@ jobs:
19
python-version: '3.7'
20
- name: Install dependencies
21
run: |
22
- python -m pip install --upgrade pip
23
- pip install setuptools wheel twine --upgrade --force
+ python -m pip3 install --upgrade pip
+ pip3 install setuptools wheel twine --upgrade --force
24
- name: Build and publish
25
env:
26
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
27
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
28
29
- python setup.py sdist bdist_wheel
+ python3 setup.py sdist bdist_wheel
30
twine upload dist/*
0 commit comments