Procházet zdrojové kódy

Fix mkvenv - freeze with outdated not supported

84582af
Dirk Alders před 1 rokem
rodič
revize
69f4203d60
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      mkvenv

+ 2
- 2
mkvenv Zobrazit soubor

@@ -1,9 +1,9 @@
1 1
 if [ ! -e venv ];then
2
-    virtualenv venv
2
+    python3 -m venv venv
3 3
     if venv/bin/pip -V | grep `pwd -P`; then
4 4
         venv/bin/pip install --upgrade pip
5 5
         find . -name requirements.txt | xargs -L 1 venv/bin/pip install -r
6
-        venv/bin/pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 venv/bin/pip install -U
6
+        venv/bin/pip list --outdated --format=json | jq -r '.[] | .name'|xargs -n1 venv/bin/pip install -U
7 7
     else
8 8
         echo Not running in the venv!
9 9
     fi

Načítá se…
Zrušit
Uložit