Revert "Bump virtualenv from 20.0.30 to 20.2.1" (#7975)

This reverts commit 8785279ffd40d04cae409a1d3a94aebd94f2e199.

Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
Anca Iordache 2020-12-04 17:32:14 +01:00 committed by GitHub
parent 3f46dc1d76
commit 6c55ef6a5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -68,7 +68,7 @@ WORKDIR /code/
COPY docker-compose-entrypoint.sh /usr/local/bin/ COPY docker-compose-entrypoint.sh /usr/local/bin/
COPY --from=docker-cli /usr/local/bin/docker /usr/local/bin/docker COPY --from=docker-cli /usr/local/bin/docker /usr/local/bin/docker
RUN pip install \ RUN pip install \
virtualenv==20.2.1 \ virtualenv==20.0.30 \
tox==3.20.1 tox==3.20.1
COPY requirements-dev.txt . COPY requirements-dev.txt .
COPY requirements-indirect.txt . COPY requirements-indirect.txt .

View File

@ -24,5 +24,5 @@ smmap==3.0.4
smmap2==3.0.1 smmap2==3.0.1
toml==0.10.1 toml==0.10.1
tox==3.20.1 tox==3.20.1
virtualenv==20.2.1 virtualenv==20.0.30
wcwidth==0.2.5 wcwidth==0.2.5

View File

@ -16,7 +16,7 @@
# #
# 4. In Powershell, run the following commands: # 4. In Powershell, run the following commands:
# #
# $ pip install 'virtualenv==20.2.1' # $ pip install 'virtualenv==20.0.30'
# $ 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==20.2.1 pip3 install virtualenv==20.0.30
fi fi
# #