From: Thomas Bechtold Date: Mon, 25 May 2020 09:44:42 +0000 (+0200) Subject: bootstap: Drop --setuptools from virtualenv installation X-Git-Tag: 1.1.0~102^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=db2338d44b2c50fcbf22841d7ead130aed61420e;p=teuthology.git bootstap: Drop --setuptools from virtualenv installation --setuptools is a no-op since ~2013 so drop the switch. Signed-off-by: Thomas Bechtold --- diff --git a/bootstrap b/bootstrap index 0cad836a4..2c7ff27f1 100755 --- 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)