Skip to content

Commit c24abca

Browse files
committed
Fix build command
1 parent 0dde345 commit c24abca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,13 @@ jobs:
4747
- name: Install dependencies
4848
run: |
4949
python -m pip install --upgrade pip
50+
python -m pip install --upgrade build
5051
pip install setuptools wheel twine
5152
5253
- name: Build and publish
5354
env:
5455
TWINE_USERNAME: __token__
5556
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
5657
run: |
57-
python setup.py sdist bdist_wheel
58+
python -m build
5859
twine upload dist/*

0 commit comments

Comments
 (0)