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