Merge pull request #34 from minrk/no-no-cache

remove —no-cache-dir arg
This commit is contained in:
Yuvi Panda
2018-07-15 13:49:49 -07:00
committed by GitHub

View File

@@ -87,7 +87,7 @@ def pip_install(prefix, packages, editable=False):
Set editable=True to add '--editable' to the pip install commandline. Set editable=True to add '--editable' to the pip install commandline.
Very useful when doing active development Very useful when doing active development
""" """
flags = ['--no-cache-dir', '--upgrade'] flags = ['--upgrade']
if editable: if editable:
flags.append('--editable') flags.append('--editable')
subprocess.check_output([ subprocess.check_output([