Revert "init_venv: Pass --no-clean to pip on Windows."

This reverts commit 28fe84944c.

It didn't really help and it's deprecated (and un-deprecated?!) in the recent
pip.
This commit is contained in:
Florian Bruhin 2015-01-22 10:44:03 +01:00
parent b387b4c7a9
commit 2a72d290a7

View File

@ -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):