소스 검색

Fix mkvenv - freeze with outdated not supported

84582af
Dirk Alders 1 년 전
부모
커밋
69f4203d60
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      mkvenv

+ 2
- 2
mkvenv 파일 보기

@@ -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

Loading…
취소
저장