Skip to content

Commit

Permalink
Use build command instead of setup.py
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
synkd committed Apr 4, 2024
1 parent de45afc commit 874e46e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
pip install -U pip
pip install .[setup]
python setup.py sdist bdist_wheel
python -m build
python -m twine check dist/*
- name: Build and publish
Expand Down

0 comments on commit 874e46e

Please sign in to comment.