From 0735d4561785d68b42dc3d5fc7fbc3f1f1ba4d9a Mon Sep 17 00:00:00 2001 From: Rambaud Pierrick <12rambau@users.noreply.github.com> Date: Thu, 28 Dec 2023 13:14:23 +0100 Subject: [PATCH] build: use the build lib to create the wheel (#256) --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b8d849a..5088892 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,10 +21,10 @@ jobs: uses: actions/setup-python@v5 with: python-version: "3.10" + - name: install dependencies + run: pip install build - name: Build package - run: | - pip install wheel - python setup.py sdist bdist_wheel + run: python -m build - name: Publish uses: pypa/gh-action-pypi-publish@v1.8.11 with: