From c06922123f86a058e7538f10cf843687ab6c4096 Mon Sep 17 00:00:00 2001 From: Jacob Callahan Date: Wed, 30 Aug 2023 13:07:39 -0400 Subject: [PATCH] Update build action 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 --- .github/workflows/python-publish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index eedb423d..4ccc0124 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -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