From 4103eb99181997340db1dac4c4d15a94caa0d9cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Wed, 3 Apr 2024 19:33:14 +0200 Subject: [PATCH] [build] generate sdist and wheel packages using 'build' module --- scripts/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 09127b59..5911b9a1 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -44,9 +44,9 @@ update-dev() { build-python() { cd "${ROOTDIR}" - echo Building bdist_wheel and sdist + echo Building sdist and wheel - python setup.py bdist_wheel sdist + python -m build } build-linux() {