We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f35f11c commit f0087e3Copy full SHA for f0087e3
.github/workflows/deploy.yml
@@ -20,14 +20,13 @@ jobs:
20
- name: Install dependencies
21
run: |
22
pip install .
23
- pip install setuptools wheel twine
+ pip install setuptools wheel twine build
24
- name: Clean previous builds
25
run: rm -rf dist/ build/ *.egg-info
26
- name: Build and publish
27
env:
28
TWINE_USERNAME: __token__
29
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
30
31
- # This uses the version string from __about__.py, which we checked matches the git tag above
32
- python setup.py sdist
+ python -m build
33
twine upload dist/*
0 commit comments