From e6da45bf74ee17429a163f45c1f4c3c2aa4d7571 Mon Sep 17 00:00:00 2001 From: Luca Beurer-Kellner Date: Fri, 16 May 2025 19:53:15 +0200 Subject: [PATCH] use python -m build --- run.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/run.sh b/run.sh index 52fbdb3..6fff8c0 100755 --- a/run.sh +++ b/run.sh @@ -140,12 +140,11 @@ integration_tests() { sleep 2 done - # Delete existing dist files - rm -rf dist - # Generate latest whl file for the invariant-gateway package. # This is required to run the integration tests. - uv build + pip install build + rm -rf dist + python -m build WHEEL_FILE=$(ls dist/*.whl | head -n 1) echo "WHEEL_FILE: $WHEEL_FILE"