Bump virtualenv version to 20.0.29

Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
aiordache 2020-08-05 10:49:40 +02:00
parent aec2f5acba
commit 5a47b692c1
3 changed files with 3 additions and 3 deletions

View File

@ -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 COPY --from=docker-cli /usr/local/bin/docker /usr/local/bin/docker
WORKDIR /code/ WORKDIR /code/
# FIXME(chris-crone): virtualenv 16.3.0 breaks build, force 16.2.0 until fixed # 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 RUN pip install tox==2.9.1
COPY requirements-indirect.txt . COPY requirements-indirect.txt .

View File

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

View File

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