We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99bb97b commit 52131eaCopy full SHA for 52131ea
1 file changed
.github/workflows/pythonpublish.yml
@@ -21,11 +21,11 @@ jobs:
21
- name: Install dependencies
22
run: |
23
python -m pip install --upgrade pip
24
- pip install setuptools wheel twine
+ pip install setuptools wheel build twine
25
- name: Build and publish
26
env:
27
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
28
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
29
30
- python setup.py sdist bdist_wheel
+ python -m build
31
twine upload dist/*
0 commit comments