Skip to content

Commit

Permalink
Avoid parallel creation of virtual environment and pip upgrade (fix i…
Browse files Browse the repository at this point in the history
…ssue OCR-D#165)

Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Aug 20, 2020
1 parent 64e578f commit 2c3aaac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2c3aaac

Please sign in to comment.