From 06c871d33fb1c58ffc233e8c8d2d7282e780ec81 Mon Sep 17 00:00:00 2001 From: Riccardo Schirone Date: Tue, 8 Aug 2023 11:17:53 +0200 Subject: [PATCH] Use python -m build to build wheels --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6fad37..4e97563 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,8 @@ jobs: export PATH=${HOME}/bin:${HOME}/.local/bin:${PATH} export LD_LIBRARY_PATH=${HOME}/lib/$(uname -m)-linux-gnu:${HOME}/lib:${HOME}/lib64:${LD_LIBRARY_PATH} export PKG_CONFIG_PATH=${HOME}/lib/pkgconfig:${HOME}/lib/$(uname -m)-linux-gnu/pkgconfig:${PKG_CONFIG_PATH} - python3 setup.py sdist bdist_wheel + python3 -m pip install build + python3 -m build working-directory: python - name: Publish Python package to pypi