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 c3ce06c commit 1a25b41Copy full SHA for 1a25b41
.github/workflows/publish.yml
@@ -14,11 +14,11 @@ jobs:
14
- name: Install dependencies
15
run: |
16
python -m pip install --upgrade pip
17
- pip install setuptools wheel twine
+ pip install build twine
18
- name: Build and publish
19
env:
20
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
21
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
22
23
- python setup.py sdist bdist_wheel
+ python -m build
24
twine upload dist/*
0 commit comments