From 873848a9a911d9a9311995d2a586ee45eabe0337 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 14 Jun 2018 13:33:06 +0200 Subject: [PATCH] Use pip instead of setup.py --- build/local/setup_lib.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build/local/setup_lib.sh b/build/local/setup_lib.sh index 87bd14e..c38040e 100755 --- a/build/local/setup_lib.sh +++ b/build/local/setup_lib.sh @@ -1,11 +1,10 @@ #!/bin/bash -ls /srv/lib/ for module in `ls /srv/lib/`; do cd /srv/lib/$module if [ -f 'requirements.txt' ]; then pip install -r requirements.txt else - python setup.py develop + pip install -e . fi done -- 2.39.5