From fef72ab2a5ebf186159a0c5918edcdd1301235a8 Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 13 Aug 2019 17:46:05 +0200 Subject: [PATCH] test_wheel: don't try to install pip outside the virtual env We can no longer have pip pre-installed, see #690 --- makepanda/test_wheel.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/makepanda/test_wheel.py b/makepanda/test_wheel.py index 1b6ac14175..86fb8f4d2f 100755 --- a/makepanda/test_wheel.py +++ b/makepanda/test_wheel.py @@ -19,9 +19,6 @@ def test_wheel(wheel, verbose=False): print("Setting up virtual environment in {0}".format(envdir)) sys.stdout.flush() - # Make sure pip is up-to-date first. - subprocess.call([sys.executable, "-B", "-m", "pip", "install", "-U", "pip"]) - # Create a virtualenv. if sys.version_info >= (3, 0): subprocess.call([sys.executable, "-B", "-m", "venv", "--clear", envdir])