From 863fb01d3bccd08015ad971b38f6db03a0591500 Mon Sep 17 00:00:00 2001
From: Antonio Ragagnin <antonio.ragagnin@inaf.it>
Date: Sun, 12 Jan 2025 12:15:20 +0100
Subject: [PATCH] clone use pip -e .[edit]

---
 cloneall.bash | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/cloneall.bash b/cloneall.bash
index 2f382dd..d5e795c 100755
--- a/cloneall.bash
+++ b/cloneall.bash
@@ -31,6 +31,7 @@ if [ ! -z "$clona" ]; then
     . .env
     [[ ! -d "venv" ]] && python3 -mvenv venv
     . venv/bin/activate
+    pip install --upgrade pip
     pip install autopep8
     pip install matplotlib
     for REPO in "${REPOS[@]}"; do
@@ -39,7 +40,7 @@ if [ ! -z "$clona" ]; then
         pushd $REPO
         git switch dev || echo no dev branch
 	if [[ "$REPO" != "gitlab-profile" ]]; then
-	    [ ! -z "$pyinsta" ] && python -mpip install -e . && python -m hotwheels.checkup hotwheels/
+	    [ ! -z "$pyinsta" ] && python -mpip install -e .[edit] && python -m hotwheels.checkup hotwheels/
 	fi
         popd
     done
-- 
GitLab