Skip to content

Commit 874e46e

Browse files
committed
Use build command instead of setup.py
Manifester's python-publish workflow has been failing during the Setup and Build step. These failures persisted after my previous PR fixing a syntax issue with the version. This PR switches from invoking `setup.py` directly to invoking the `build` tool in an attempt to resolve the error.
1 parent de45afc commit 874e46e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/python-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
pip install -U pip
2727
pip install .[setup]
28-
python setup.py sdist bdist_wheel
28+
python -m build
2929
python -m twine check dist/*
3030
3131
- name: Build and publish

0 commit comments

Comments
 (0)