Merge pull request #7643 from docker/dependabot/pip/virtualenv-20.0.29

Bump virtualenv from 16.2.0 to 20.0.29
This commit is contained in:
Anca Iordache 2020-08-05 15:19:48 +02:00 committed by GitHub
commit d4fc35af94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 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
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 .

View File

@ -24,5 +24,5 @@ smmap==3.0.4
smmap2==3.0.1
toml==0.10.1
tox==2.9.1
virtualenv==16.2.0
virtualenv==20.0.29
wcwidth==0.1.9

View File

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

View File

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