Skip to content

Commit

Permalink
Update build action
Browse files Browse the repository at this point in the history
The new process has been simplified now that we've moved away from using
setup.py and rely on pyproject.toml
This uses the newer build system recommended by PyPA
  • Loading branch information
JacobCallahan committed Aug 30, 2023
1 parent 0f58f6e commit c069221
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ jobs:

- name: Setup and Build
run: |
pip install -U pip
pip install .[setup]
python setup.py sdist bdist_wheel
pip install -U pip build
python -m build
python -m twine check dist/*
- name: Build and publish
Expand Down

0 comments on commit c069221

Please sign in to comment.