From 827928b31e992fb0e77ca6487b07c855b0ee759b Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Fri, 23 Aug 2024 01:02:32 +0200 Subject: [PATCH] Adjusting check_updates.sh to comform to new tooling. --- check_updates.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check_updates.sh b/check_updates.sh index 6e43913..98af522 100755 --- a/check_updates.sh +++ b/check_updates.sh @@ -16,8 +16,8 @@ if [[ ${retval} -ne 0 ]]; then fi pip3 uninstall -y loaih # build the actual toolkit - python3 setup.py bdist_wheel - pip3 install dist/*.whl; rv=$? + python3 -m build -w + pip3 install dist/loaih*.whl; rv=$? if [[ -d venv ]]; then deactivate fi