Skip to content
This repository was archived by the owner on Mar 15, 2026. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove -e
  • Loading branch information
Dharwin Perez committed May 28, 2016
commit 54f36f3938c0b4ae2f769fea5c171f519fe24a00
2 changes: 2 additions & 0 deletions aws_lambda/aws_lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,8 @@ def pip_install_to_target(path, local_package=None):
if r.startswith('Python=='):
# For some reason Python is coming up in pip freeze.
continue
elif r.startswith('-e '):
r = r.replace('-e ','')
pip.main(['install', r, '-t', path, '--ignore-installed'])

if local_package is not None:
Expand Down