From f58d1e919d95b57ecb654ccef7930949fff6f323 Mon Sep 17 00:00:00 2001 From: Malin Date: Mon, 9 Feb 2026 08:21:29 +0100 Subject: [PATCH] fix: remove --no-deps from pip install to include dependencies The --no-deps flag was skipping cement, sh, and other required deps. Co-Authored-By: Claude Opus 4.6 --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index 0ec43dd..64cf04f 100755 --- a/install +++ b/install @@ -554,7 +554,7 @@ wo_install() { if [ -f "$wo_install_dir/setup.py" ]; then cd "$wo_install_dir" || exit 1 - /opt/wo/bin/pip install --force-reinstall --no-cache-dir --no-deps . + /opt/wo/bin/pip install --force-reinstall --no-cache-dir . cd || exit 1 elif [ "$wo_branch" = "master" ]; then /opt/wo/bin/pip install -U wordops --upgrade-strategy=eager