Merge pull request #282 from cbenhagen/patch-3
Remove pip --download-cache flag (fixes #279)
This commit is contained in:
commit
b4f21f7f54
1 changed files with 3 additions and 4 deletions
|
@ -469,8 +469,7 @@ class Buildozer(object):
|
|||
self.cmd('curl http://python-distribute.org/distribute_setup.py | venv/bin/python', get_stdout=True, cwd=self.buildozer_dir)
|
||||
|
||||
self.debug('Install requirement {} in virtualenv'.format(module))
|
||||
self.cmd('pip install --download-cache={} --target={} {}'.format(
|
||||
self.global_cache_dir, self.applibs_dir, module),
|
||||
self.cmd('pip install --target={} {}'.format(self.applibs_dir, module),
|
||||
env=self.env_venv,
|
||||
cwd=self.buildozer_dir)
|
||||
|
||||
|
|
Loading…
Reference in a new issue