Add method for virtualenv with --seeder pip
--seeder pip uses pip (from wheel) to install seed packages (pip, setuptools and wheel) from our own system wheels.
This commit is contained in:
parent
c26b64823b
commit
261dfe65e1
1 changed files with 2 additions and 0 deletions
|
|
@ -28,6 +28,8 @@ elif [ "$METHOD" == "virtualenv" ]; then
|
|||
virtualenv --python=$PYTHON venv
|
||||
elif [ "$METHOD" == "virtualenv-no-download" ]; then
|
||||
virtualenv --no-download --python=$PYTHON venv
|
||||
elif [ "$METHOD" == "virtualenv-seeder-pip" ]; then
|
||||
virtualenv --seeder pip --python=$PYTHON venv
|
||||
else
|
||||
echo 'Unsupported $METHOD' $METHOD >&2
|
||||
exit 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue