Add wheel and pip to base requirements of my venvs.

This commit is contained in:
Julien Palard 2020-06-02 16:12:27 +02:00
parent b1869649a9
commit d0f9c92a37
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ venv()
python3 -m venv --prompt "$(basename "$PWD")" .venv
fi
source .venv/bin/activate
pip install -q black jedi
pip install --upgrade --pre black jedi wheel pip
}
export PIP_REQUIRE_VIRTUALENV=1