From a0c15c80ad95257d713e7587f070772f416122d6 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Thu, 21 May 2020 10:48:34 -0400 Subject: [PATCH] bootstrap: remove deprecated virtualenv options this fails on Ubuntu 20.04: > virtualenv: error: unrecognized arguments: --no-site-packages --distribute according to `virtualenv -h`: > --no-site-packages DEPRECATED. Retained only for backward compatibility. > Not having access to global site-packages is now the > default behavior. > --distribute DEPRECATED. Retained only for backward compatibility. > This option has no effect. Signed-off-by: Casey Bodley --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index 8434767..018597a 100755 --- a/bootstrap +++ b/bootstrap @@ -59,7 +59,7 @@ esac # s3-tests only works on python 3.6 not newer versions of python3 -${virtualenv} --python=$(which python3.6) --no-site-packages --distribute virtualenv +${virtualenv} --python=$(which python3.6) virtualenv # avoid pip bugs ./virtualenv/bin/pip3 install --upgrade pip