Add support for Python 3.6 (thanks sose)

This commit is contained in:
2021-04-28 02:12:15 -06:00
parent aec057c89c
commit ad6c412802
4 changed files with 32 additions and 21 deletions

View File

@@ -11,7 +11,7 @@ fi
if ! command -v virtualenv &> /dev/null
then
echo "virtualenv could not be found, please install with:"
echo "sudo apt install python3-virtualenv"
echo "sudo apt install virtualenv"
exit
fi
@@ -71,6 +71,9 @@ git pull --rebase
git stash pop || true
# https://github.com/pypa/virtualenv/issues/1029
PS1=${PS1:-}
# create virtual environment
echo "Installing Python requirements..."