Skip to content

Commit 463d5eb

Browse files
authored
chore: Update Runtime to Python3.11 (#3634)
Co-authored-by: Jacob Fuss <[email protected]>
1 parent 2aef955 commit 463d5eb

File tree

84 files changed

+107
-107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+107
-107
lines changed

integration/resources/templates/combination/all_policy_templates.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Resources:
88
Properties:
99
CodeUri: ${codeuri}
1010
Handler: hello.handler
11-
Runtime: python3.8
11+
Runtime: python3.11
1212
Policies:
1313

1414
- SQSPollerPolicy:
@@ -123,7 +123,7 @@ Resources:
123123
Properties:
124124
CodeUri: ${codeuri}
125125
Handler: hello.handler
126-
Runtime: python3.8
126+
Runtime: python3.11
127127
Policies:
128128

129129
- SESEmailTemplateCrudPolicy: {}
@@ -187,7 +187,7 @@ Resources:
187187
Properties:
188188
CodeUri: ${codeuri}
189189
Handler: hello.handler
190-
Runtime: python3.8
190+
Runtime: python3.11
191191
Policies:
192192
- ElasticMapReduceModifyInstanceFleetPolicy:
193193
ClusterId: name

integration/resources/templates/combination/api_with_authorizers_invokefunction_set_none.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Resources:
1212
InlineCode: |
1313
print("hello")
1414
Handler: index.handler
15-
Runtime: python3.8
15+
Runtime: python3.11
1616
Events:
1717
API3:
1818
Type: Api

integration/resources/templates/combination/connector_function_to_location_place_index.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Resources:
99
TriggerFunction:
1010
Type: AWS::Serverless::Function
1111
Properties:
12-
Runtime: python3.8
12+
Runtime: python3.11
1313
Handler: index.handler
1414
InlineCode: |
1515
import boto3

integration/resources/templates/combination/depends_on.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Resources:
1212
Role:
1313
Fn::GetAtt: LambdaRole.Arn
1414
Handler: lambda_function.lambda_handler
15-
Runtime: python3.8
15+
Runtime: python3.11
1616
Timeout: 15
1717
CodeUri: ${codeuri}
1818

integration/resources/templates/combination/function_with_custom_code_deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Resources:
1010
Properties:
1111
CodeUri: ${codeuri}
1212
Handler: index.handler
13-
Runtime: python3.8
13+
Runtime: python3.11
1414

1515
AutoPublishAlias: Live
1616

integration/resources/templates/combination/function_with_deployment_basic.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Resources:
55
Properties:
66
CodeUri: ${codeuri}
77
Handler: index.handler
8-
Runtime: python3.8
8+
Runtime: python3.11
99

1010
AutoPublishAlias: Live
1111

integration/resources/templates/combination/function_with_deployment_default_role_managed_policy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Resources:
44
Properties:
55
CodeUri: ${codeuri}
66
Handler: index.handler
7-
Runtime: python3.8
7+
Runtime: python3.11
88
AutoPublishAlias: Live
99
DeploymentPreference:
1010
Type: Canary10Percent5Minutes

integration/resources/templates/combination/function_with_deployment_globals.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Resources:
1616
Properties:
1717
CodeUri: ${codeuri}
1818
Handler: index.handler
19-
Runtime: python3.8
19+
Runtime: python3.11
2020
AutoPublishAlias: Live
2121

2222
DeploymentRole:

integration/resources/templates/combination/function_with_http_api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Resources:
33
Type: AWS::Serverless::Function
44
Properties:
55
Handler: index.handler
6-
Runtime: python3.8
6+
Runtime: python3.11
77
InlineCode: |
88
def handler(event, context):
99
return {'body': 'Hello World!', 'statusCode': 200}

integration/resources/templates/combination/function_with_http_api_default_path.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Resources:
33
Type: AWS::Serverless::Function
44
Properties:
55
Handler: index.handler
6-
Runtime: python3.8
6+
Runtime: python3.11
77
InlineCode: |
88
def handler(event, context):
99
return {'body': 'Hello World!', 'statusCode': 200}

0 commit comments

Comments
 (0)