Skip to content

Commit c16f961

Browse files
committed
update to python 3.11
1 parent 8e97d74 commit c16f961

File tree

4 files changed

+26
-26
lines changed

4 files changed

+26
-26
lines changed

infrastructure/aws/cdk/app.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -249,12 +249,12 @@ def __init__( # noqa: C901
249249
eoraster_function = aws_lambda.Function(
250250
self,
251251
f"{id}-raster-lambda",
252-
runtime=aws_lambda.Runtime.PYTHON_3_10,
252+
runtime=aws_lambda.Runtime.PYTHON_3_11,
253253
code=aws_lambda.Code.from_docker_build(
254254
path=os.path.abspath(context_dir),
255255
file="infrastructure/aws/dockerfiles/Dockerfile.raster",
256256
build_args={
257-
"PYTHON_VERSION": "3.10",
257+
"PYTHON_VERSION": "3.11",
258258
},
259259
platform="linux/amd64",
260260
),
@@ -329,12 +329,12 @@ def __init__( # noqa: C901
329329
eostac_function = aws_lambda.Function(
330330
self,
331331
f"{id}-stac-lambda",
332-
runtime=aws_lambda.Runtime.PYTHON_3_10,
332+
runtime=aws_lambda.Runtime.PYTHON_3_11,
333333
code=aws_lambda.Code.from_docker_build(
334334
path=os.path.abspath(context_dir),
335335
file="infrastructure/aws/dockerfiles/Dockerfile.stac",
336336
build_args={
337-
"PYTHON_VERSION": "3.10",
337+
"PYTHON_VERSION": "3.11",
338338
},
339339
platform="linux/amd64",
340340
),
@@ -399,12 +399,12 @@ def __init__( # noqa: C901
399399
eovector_function = aws_lambda.Function(
400400
self,
401401
f"{id}-vector-lambda",
402-
runtime=aws_lambda.Runtime.PYTHON_3_10,
402+
runtime=aws_lambda.Runtime.PYTHON_3_11,
403403
code=aws_lambda.Code.from_docker_build(
404404
path=os.path.abspath(context_dir),
405405
file="infrastructure/aws/dockerfiles/Dockerfile.vector",
406406
build_args={
407-
"PYTHON_VERSION": "3.10",
407+
"PYTHON_VERSION": "3.11",
408408
},
409409
platform="linux/amd64",
410410
),

infrastructure/aws/package-lock.json

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infrastructure/aws/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "MIT",
66
"private": true,
77
"dependencies": {
8-
"cdk": "2.76.0-alpha.0"
8+
"cdk": "2.94.0"
99
},
1010
"scripts": {
1111
"cdk": "cdk"

infrastructure/aws/requirements-cdk.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# aws cdk
2-
aws-cdk-lib==2.76.0
3-
aws_cdk-aws_apigatewayv2_alpha==2.76.0a0
4-
aws_cdk-aws_apigatewayv2_integrations_alpha==2.76.0a0
2+
aws-cdk-lib==2.94.0
3+
aws_cdk-aws_apigatewayv2_alpha==2.94.0a0
4+
aws_cdk-aws_apigatewayv2_integrations_alpha==2.94.0a0
55
constructs>=10.0.0
66

77
# pydantic settings

0 commit comments

Comments
 (0)