Skip to content

Commit 6a711fb

Browse files
author
Dharwin Perez
committed
Remove git source conditional
or r.startswith('-e git+git')
1 parent 54a24ba commit 6a711fb

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
@@ -203,7 +203,7 @@ def pip_install_to_target(path, local_package=None):
203203
"""
204204
print('Gathering pip packages')
205205
for r in pip.operations.freeze.freeze():
206-
if r.startswith('Python==') or r.startswith('-e git+git'):
206+
if r.startswith('Python=='):
207207
# For some reason Python is coming up in pip freeze.
208208
continue
209209
pip.main(['install', r, '-t', path, '--ignore-installed'])

0 commit comments

Comments
 (0)