Skip to content

Commit

Permalink
Updated the python version to 12
Browse files Browse the repository at this point in the history
  • Loading branch information
caparker committed Jun 11, 2024
1 parent b5d0daf commit 7fc9e87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cdk/lambda_ingest_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(
),
handler="ingest.handler.handler",
vpc=vpc_id,
runtime=aws_lambda.Runtime.PYTHON_3_11,
runtime=aws_lambda.Runtime.PYTHON_3_12,
allow_public_subnet=True,
memory_size=lambda_memory_size,
environment=stringify_settings(lambda_env),
Expand Down
2 changes: 1 addition & 1 deletion cdk/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ def create_dependencies_layer(
self,
layer_id,
code=layer_code,
compatible_runtimes=[aws_lambda.Runtime.PYTHON_3_11]
compatible_runtimes=[aws_lambda.Runtime.PYTHON_3_12]
)

0 comments on commit 7fc9e87

Please sign in to comment.