From 8d231dbf3195598257b5eb20d72146e6493202f0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 16 Dec 2023 20:54:30 +0100 Subject: [PATCH] Update build-system to use "build" insead of "setup.py" --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a6d6a86c..3068cdbfb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -450,8 +450,8 @@ jobs: - name: Build distribution run: | - pip install -U setuptools wheel - python setup.py sdist bdist_wheel + pip install -U build + python -m build --sdist --wheel - name: Upload artifacts 📦 uses: actions/upload-artifact@v3