From db2338d44b2c50fcbf22841d7ead130aed61420e Mon Sep 17 00:00:00 2001 From: Thomas Bechtold Date: Mon, 25 May 2020 11:44:42 +0200 Subject: [PATCH] bootstap: Drop --setuptools from virtualenv installation --setuptools is a no-op since ~2013 so drop the switch. Signed-off-by: Thomas Bechtold --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index 0cad836a4a..2c7ff27f10 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) -- 2.39.5