From c2c16487816d19a63177fae0b9febf1f0220f982 Mon Sep 17 00:00:00 2001 From: Marko Toplak Date: Fri, 15 Nov 2024 15:19:00 +0100 Subject: [PATCH] build sdist with -m build (pep517.build now errors) --- .github/workflows/build-wheels.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-wheels.yaml b/.github/workflows/build-wheels.yaml index 566342c834a..c6860e1f6e6 100644 --- a/.github/workflows/build-wheels.yaml +++ b/.github/workflows/build-wheels.yaml @@ -76,8 +76,8 @@ jobs: - name: Build sdist (pep517) run: | - python -m pip install pep517 numpy cython - python -m pep517.build -s . + python -m pip install build numpy cython + python -m build -s - name: Upload sdist uses: actions/upload-artifact@v4