From 50cf20aaae15f7021413a2c8ba0e5a869966fdc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Bartoszkiewicz?= Date: Sun, 24 May 2020 14:55:36 +0200 Subject: [PATCH] don't install virtualenv virtualenv is not needed, as the built-in venv is actually used. --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 8a93c5dd5..672a757a5 100644 --- a/Makefile +++ b/Makefile @@ -63,7 +63,6 @@ all: run pyenv: # https://github.com/PyO3/maturin/issues/283 - Expected `python` to be a python interpreter inside a virtualenv set -eu -o pipefail ${SHELLFLAGS}; \ - "${PYTHON_BIN}" -m pip install virtualenv; \ "${PYTHON_BIN}" -m venv pyenv; \ case "$$(uname -s)" in CYGWIN*|MINGW*|MSYS*) \ dos2unix "${ACTIVATE_SCRIPT}"; \