Skip to content

Commit 184155a

Browse files
author
Jeff Parker
committed
don't cache downloads
1 parent 2458154 commit 184155a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws_lambda/aws_lambda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ def _install_packages(path, packages):
421421
continue
422422

423423
print('Installing {package}'.format(package=package))
424-
call = [sys.executable, '-m', 'pip', 'install', package, '-t', path, '--ignore-installed']
424+
call = [sys.executable, '-m', 'pip', 'install', package, '-t', path, '--ignore-installed', '--no-cache-dir']
425425
if extra_args:
426426
call.extend(extra_args)
427427
subprocess.check_call(call)

0 commit comments

Comments
 (0)