-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lambda-python): asset hashes changed (#10959)
Fixes the issue with the lambda python asset hashes changing. The dependencies of the `requests` package need to be explicitly locked. See broken builds in #10958, #10957 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
- Loading branch information
1 parent
43bc908
commit b8de264
Showing
8 changed files
with
62 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
packages/@aws-cdk/aws-lambda-python/test/lambda-handler-project/shared/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
# Lock versions of pip packages | ||
certifi==2020.6.20 | ||
chardet==3.0.4 | ||
idna==2.10 | ||
urllib3==1.25.11 | ||
# Requests used by this lambda | ||
requests==2.23.0 | ||
# Pillow 6.x so that python 2.7 and 3.x can both use this fixture | ||
pillow==6.2.2 |
6 changes: 6 additions & 0 deletions
6
packages/@aws-cdk/aws-lambda-python/test/lambda-handler/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# Lock versions of pip packages | ||
certifi==2020.6.20 | ||
chardet==3.0.4 | ||
idna==2.10 | ||
urllib3==1.25.11 | ||
# Requests used by this lambda | ||
requests==2.23.0 | ||
# Pillow 6.x so that python 2.7 and 3.x can both use this fixture | ||
pillow==6.2.2 |