From 80f69af1b00cba7408344588ec050d85e2955641 Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Tue, 9 Apr 2024 18:56:07 -0700 Subject: [PATCH] Delete old .whl files before building another (#497) --- tools/install-python-wheel.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/install-python-wheel.sh b/tools/install-python-wheel.sh index c51dd757..1e416cc1 100755 --- a/tools/install-python-wheel.sh +++ b/tools/install-python-wheel.sh @@ -1,3 +1,4 @@ #!/bin/bash # Builds and installs Python wheel for local testing +rm -f dist/*.whl python -m build --wheel && pip install --user --break-system-packages --force-reinstall dist/*.whl