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