tools/setup-virtualenv: s/virtualenv/python -m venv/

so we don't need to use virtualenv python package for creating a
virtualenv, the "venv" module in Python3 would suffice.

see also https://docs.python.org/3/library/venv.html

Signed-off-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
Kefu Chai 2021-07-31 20:47:28 +08:00
parent 3c40db975c
commit 494fea50ce

View File

@ -40,11 +40,11 @@ TEMP=$($GETOPT --options "h" --long "help,python:" --name "$SCRIPTNAME" -- "$@")
test $? != 0 && usage test $? != 0 && usage
eval set -- "$TEMP" eval set -- "$TEMP"
PYTHON_OPTION="" PYTHON=python3
while true ; do while true ; do
case "$1" in case "$1" in
-h|--help) usage ;; # does not return -h|--help) usage ;; # does not return
--python) PYTHON_OPTION="--python=$2" ; shift ; shift ;; --python) PYTHON="$2" ; shift ; shift ;;
--) shift ; break ;; --) shift ; break ;;
*) echo "Internal error" ; exit 1 ;; *) echo "Internal error" ; exit 1 ;;
esac esac
@ -57,7 +57,7 @@ if [ -z "$DIR" ] ; then
fi fi
rm -fr $DIR rm -fr $DIR
mkdir -p $DIR mkdir -p $DIR
virtualenv $PYTHON_OPTION $DIR $PYTHON -m venv $DIR
. $DIR/bin/activate . $DIR/bin/activate
if pip --help | grep -q disable-pip-version-check; then if pip --help | grep -q disable-pip-version-check; then