Explorar el Código

[fix] do not do unnecessary package upgrades

Adam Tauber hace 8 años
padre
commit
c0993ece54
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      manage.sh

+ 2
- 2
manage.sh Ver fichero

@@ -6,12 +6,12 @@ SEARX_DIR="$BASE_DIR/searx"
6 6
 ACTION=$1
7 7
 
8 8
 update_packages() {
9
-    pip install --upgrade -r "$BASE_DIR/requirements.txt"
9
+    pip install -r "$BASE_DIR/requirements.txt"
10 10
 }
11 11
 
12 12
 update_dev_packages() {
13 13
     update_packages
14
-    pip install --upgrade -r "$BASE_DIR/requirements-dev.txt"
14
+    pip install -r "$BASE_DIR/requirements-dev.txt"
15 15
 }
16 16
 
17 17
 check_geckodriver() {