]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
bootstap: Drop --setuptools from virtualenv installation 1492/head
authorThomas Bechtold <tbechtold@suse.com>
Mon, 25 May 2020 09:44:42 +0000 (11:44 +0200)
committerThomas Bechtold <tbechtold@suse.com>
Mon, 25 May 2020 09:44:42 +0000 (11:44 +0200)
--setuptools is a no-op since ~2013 so drop the switch.

Signed-off-by: Thomas Bechtold <tbechtold@suse.com>
bootstrap

index 0cad836a4a2071a7f57804f0764ad19725f7c5c7..2c7ff27f1058e22bf429f0f312c8c18eb7a744dc 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -142,7 +142,7 @@ if [ -z "$NO_CLOBBER" ] || [ ! -e ./$VENV ]; then
     if ! which virtualenv > /dev/null; then
         pip install virtualenv
     fi
-    virtualenv --python=$PYTHON --setuptools $VENV
+    virtualenv --python=$PYTHON $VENV
 fi
 
 PVER=$(./$VENV/bin/python --version 2>&1 | grep Python)