From 2a72d290a75c0c392c0ac33b6e1fc2f6e8f013e9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 22 Jan 2015 10:44:03 +0100 Subject: [PATCH] Revert "init_venv: Pass --no-clean to pip on Windows." This reverts commit 28fe84944c11bdfa96c3b781c27f44c54bcd72d9. It didn't really help and it's deprecated (and un-deprecated?!) in the recent pip. --- scripts/init_venv.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/init_venv.py b/scripts/init_venv.py index 49e548933..b0eb2e511 100644 --- a/scripts/init_venv.py +++ b/scripts/init_venv.py @@ -81,10 +81,7 @@ def install_dev_packages(): """Install the packages needed for development.""" for pkg in get_dev_packages(): utils.print_subtitle("Installing {}".format(pkg)) - if os.name == 'nt': - venv_python('-m', 'pip', 'install', '--no-clean', pkg) - else: - venv_python('-m', 'pip', 'install', pkg) + venv_python('-m', 'pip', 'install', pkg) def venv_python(*args, output=False):