Skip to content

Commit

Permalink
Merge pull request #34 from minrk/no-no-cache
Browse files Browse the repository at this point in the history
remove —no-cache-dir arg
  • Loading branch information
yuvipanda committed Jul 15, 2018
2 parents 755a26e + 03d0884 commit 3df097f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def pip_install(prefix, packages, editable=False):
Set editable=True to add '--editable' to the pip install commandline.
Very useful when doing active development
"""
flags = ['--no-cache-dir', '--upgrade']
flags = ['--upgrade']
if editable:
flags.append('--editable')
subprocess.check_output([
Expand Down

0 comments on commit 3df097f

Please sign in to comment.