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 <noreply@anthropic.com>
This commit is contained in:
2
install
2
install
@@ -554,7 +554,7 @@ wo_install() {
|
|||||||
|
|
||||||
if [ -f "$wo_install_dir/setup.py" ]; then
|
if [ -f "$wo_install_dir/setup.py" ]; then
|
||||||
cd "$wo_install_dir" || exit 1
|
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
|
cd || exit 1
|
||||||
elif [ "$wo_branch" = "master" ]; then
|
elif [ "$wo_branch" = "master" ]; then
|
||||||
/opt/wo/bin/pip install -U wordops --upgrade-strategy=eager
|
/opt/wo/bin/pip install -U wordops --upgrade-strategy=eager
|
||||||
|
|||||||
Reference in New Issue
Block a user