소스 검색

Bump virtualenv version to 20.0.29

Signed-off-by: aiordache <[email protected]>
aiordache 5 년 전
부모
커밋
5a47b692c1
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      Dockerfile
  2. 1 1
      script/build/windows.ps1
  3. 1 1
      script/setup/osx

+ 1 - 1
Dockerfile

@@ -46,7 +46,7 @@ ENTRYPOINT ["sh", "/usr/local/bin/docker-compose-entrypoint.sh"]
 COPY --from=docker-cli /usr/local/bin/docker /usr/local/bin/docker
 WORKDIR /code/
 # FIXME(chris-crone): virtualenv 16.3.0 breaks build, force 16.2.0 until fixed
-RUN pip install virtualenv==16.2.0
+RUN pip install virtualenv==20.0.29
 RUN pip install tox==2.9.1
 
 COPY requirements-indirect.txt .

+ 1 - 1
script/build/windows.ps1

@@ -16,7 +16,7 @@
 #
 # 4. In Powershell, run the following commands:
 #
-#        $ pip install 'virtualenv==16.2.0'
+#        $ pip install 'virtualenv==20.0.29'
 #        $ Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
 #
 # 5. Clone the repository:

+ 1 - 1
script/setup/osx

@@ -36,7 +36,7 @@ if ! [ -x "$(command -v python3)" ]; then
   brew install python3
 fi
 if ! [ -x "$(command -v virtualenv)" ]; then
-  pip3 install virtualenv==16.2.0
+  pip3 install virtualenv==20.0.29
 fi
 
 #