add wheel to dependencies (speed up install) (#447)

Signed-off-by: John Seekins <john@civiceagle.com>

Signed-off-by: John Seekins <john@civiceagle.com>
This commit is contained in:
John Seekins 2022-11-10 22:12:59 -07:00 committed by GitHub
parent ff72e1e0f3
commit 3e28e79e28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ function setup_venv {
python3 -m venv "${venv_dir}"
source "${venv_dir}/bin/activate"
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade pip wheel
python3 -m pip install -r requirements.txt
}