From b09cda62e1bb4db1f8bfa7868b88b52fab51b47f Mon Sep 17 00:00:00 2001 From: rmorshea Date: Fri, 11 Sep 2020 18:27:01 -0700 Subject: [PATCH] use python-build see: https://github.com/pypa/pep517/pull/83 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 43e0ce78a..98e0fe451 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,11 +34,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install setuptools wheel twine + pip install setuptools build twine - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | - python setup.py bdist_wheel + python -m build . twine upload dist/*