From 6866c9cceb2c977083747ac691c874f0ddace668 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 30 Dec 2023 16:07:49 +0100 Subject: [PATCH] use build module to build distribution --- .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 57bc6b5d..0a460e8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -199,8 +199,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: Publish to PyPI (Test) uses: pypa/gh-action-pypi-publish@v1.8.11