Skip to content

Commit d47341c

Browse files
Adding build recipes section
1 parent a3fd968 commit d47341c

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

examples/build_recipes/pants/basic_pants/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ python_requirement(
1515

1616
python_requirement(
1717
name="requests",
18-
requirements=["requests==2.32.3"],
18+
requirements=["requests>=2.32.4"],
1919
)
2020

2121
pex_binary(

examples/build_recipes/pants/multi-target/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Shared dependencies
22
python_requirement(
33
name="powertools",
4-
requirements=["aws-lambda-powertools[all]==3.4.0"],
4+
requirements=["aws-lambda-powertools[all]==3.18.0"],
55
)
66

77
# API Lambda function
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pydantic==2.10.4
2-
requests==2.32.3
2+
requests>=2.32.4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
aws-lambda-powertools[all]==3.18.0
22
pydantic==2.10.4
3-
requests==2.32.3
3+
requests>=2.32.4
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
aws-lambda-powertools[all]==3.4.0
1+
aws-lambda-powertools[all]==3.18.0
22
pydantic==2.10.4
3-
requests==2.32.3
3+
requests>=2.32.4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pydantic==2.10.4
2-
requests==2.32.3
2+
requests>=2.32.4

examples/build_recipes/uv/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "Lambda function with Powertools using uv"
55
requires-python = ">=3.9"
66
dependencies = [
7-
"aws-lambda-powertools[all]>=3.4.0",
7+
"aws-lambda-powertools[all]>=3.18.0",
88
"pydantic>=2.10.0",
99
"requests>=2.32.0",
1010
]

0 commit comments

Comments
 (0)