From 4446ff9a4bdac52c73e99f94be92d1700c915429 Mon Sep 17 00:00:00 2001 From: Baptiste DE RENZO <baptiste.derenzo@ubicast.eu> Date: Thu, 31 Mar 2022 13:59:47 +0000 Subject: [PATCH] Update Makefile to explicitly install wheel --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index d75b4c7f..672a21ef 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,7 @@ venv: $(VENV)/bin/activate ${VENV}/bin/activate: requirements.txt requirements.dev.txt test -d $(VENV) || python3 -m venv $(VENV) $(PYTHON) -m pip install -U pip + $(PYTHON) -m pip install -U wheel $(PYTHON) -m pip install -r requirements.txt -r requirements.dev.txt touch $(VENV)/bin/activate -- GitLab