From d8604becd0edd5a28324e955559c7e4c57019f0b Mon Sep 17 00:00:00 2001 From: Unrud Date: Sun, 3 Jul 2022 12:29:51 +0200 Subject: [PATCH] Build with PEP 517 --- .github/workflows/pypi-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index ea027e9..970c672 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -12,9 +12,9 @@ jobs: with: python-version: 3.x - name: Install build dependencies - run: pip install setuptools wheel + run: pip install build - name: Build - run: python setup.py sdist bdist_wheel + run: python -m build --sdist --wheel - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@master with: