Skip to content

Commit f0087e3

Browse files
committed
test deploy
1 parent f35f11c commit f0087e3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/deploy.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
pip install .
23-
pip install setuptools wheel twine
23+
pip install setuptools wheel twine build
2424
- name: Clean previous builds
2525
run: rm -rf dist/ build/ *.egg-info
2626
- name: Build and publish
2727
env:
2828
TWINE_USERNAME: __token__
2929
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3030
run: |
31-
# This uses the version string from __about__.py, which we checked matches the git tag above
32-
python setup.py sdist
31+
python -m build
3332
twine upload dist/*

0 commit comments

Comments
 (0)