Explorar el Código

"./manage.sh update_packages" updates pip and setuptools

Fix issue #887, #962
Alexandre Flament hace 7 años
padre
commit
5baad02c06
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2
    0
      manage.sh

+ 2
- 0
manage.sh Ver fichero

@@ -8,6 +8,8 @@ ACTION=$1
8 8
 cd "$BASE_DIR"
9 9
 
10 10
 update_packages() {
11
+    pip install --upgrade pip
12
+    pip install --upgrade setuptools
11 13
     pip install -r "$BASE_DIR/requirements.txt"
12 14
 }
13 15