From 2c3aaac0f843103d7381eefdf1ca7257bc9c6a37 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 20 Aug 2020 18:37:38 +0200 Subject: [PATCH] Avoid parallel creation of virtual environment and pip upgrade (fix issue #165) Signed-off-by: Stefan Weil --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c42bcc5b..8c06121e 100644 --- a/Makefile +++ b/Makefile @@ -136,8 +136,8 @@ deinit: # Get Python modules. $(ACTIVATE_VENV) $(VIRTUAL_ENV): - $(PYTHON) -m venv $(VIRTUAL_ENV) - . $(ACTIVATE_VENV) && $(PIP) install --upgrade $(PIP_OPTIONS_E) pip setuptools + $(SEM) $(PYTHON) -m venv $(VIRTUAL_ENV) + . $(ACTIVATE_VENV) && $(SEM) $(PIP) install --upgrade $(PIP_OPTIONS_E) pip setuptools .PHONY: wheel wheel: $(BIN)/wheel