Pārlūkot izejas kodu

Bump virtualenv from 20.0.29 to 20.0.30 (#7657)

* Bump virtualenv from 20.0.29 to 20.0.30

Bumps [virtualenv](https://github.com/pypa/virtualenv) from 20.0.29 to 20.0.30.
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/master/docs/changelog.rst)
- [Commits](https://github.com/pypa/virtualenv/compare/20.0.29...20.0.30)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump virtualenv version in all files

Signed-off-by: aiordache <[email protected]>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: aiordache <[email protected]>
Co-authored-by: Anca Iordache <[email protected]>
dependabot-preview[bot] 5 gadi atpakaļ
vecāks
revīzija
f2a43d755e
4 mainītis faili ar 4 papildinājumiem un 4 dzēšanām
  1. 1 1
      Dockerfile
  2. 1 1
      requirements-indirect.txt
  3. 1 1
      script/build/windows.ps1
  4. 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==20.0.29
+RUN pip install virtualenv==20.0.30
 RUN pip install tox==3.19.0
 
 COPY requirements-indirect.txt .

+ 1 - 1
requirements-indirect.txt

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

+ 1 - 1
script/build/windows.ps1

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