Skip to content

Commit

Permalink
Bump python to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
tarunmenon95 committed Oct 31, 2023
1 parent e4715cb commit b8264bb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions sftp.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ apigateway_identity_provider:
named: true
code: identity_provider/index.py
handler: index.handler
runtime: python3.8
runtime: python3.11
timeout: 30
role: SftpIdentityProvider
log_retention: 90
Expand Down Expand Up @@ -80,7 +80,7 @@ output_vpc_endpoint_ips_custom_resource:
log_retention: 14
code: vpc_endpoint_ips/index.py
handler: index.handler
runtime: python3.8
runtime: python3.11
timeout: 60
role: GetVpcEndpointIPs

Expand Down Expand Up @@ -144,7 +144,7 @@ dynamic_users_create_and_cleanup:
CreateDynamicSftpUser:
code: create_dynamic_sftp_user/index.py
handler: index.handler
runtime: python3.8
runtime: python3.11
timeout: 60
role: CreateDynamicSftpUser
log_retention: 90
Expand All @@ -159,7 +159,7 @@ dynamic_users_create_and_cleanup:
CleanupDynamicSftpUsers:
code: cleanup_dynamic_sftp_users/index.py
handler: index.handler
runtime: python3.8
runtime: python3.11
timeout: 60
role: CleanupDynamicSftpUsers
log_retention: 90
Expand Down
6 changes: 3 additions & 3 deletions spec/dynamic_users_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@
end

it "to have property Runtime" do
expect(resource["Properties"]["Runtime"]).to eq("python3.8")
expect(resource["Properties"]["Runtime"]).to eq("python3.11")
end

it "to have property Timeout" do
Expand Down Expand Up @@ -657,7 +657,7 @@
end

it "to have property Runtime" do
expect(resource["Properties"]["Runtime"]).to eq("python3.8")
expect(resource["Properties"]["Runtime"]).to eq("python3.11")
end

it "to have property Timeout" do
Expand Down Expand Up @@ -707,7 +707,7 @@
end

it "to have property Runtime" do
expect(resource["Properties"]["Runtime"]).to eq("python3.8")
expect(resource["Properties"]["Runtime"]).to eq("python3.11")
end

it "to have property Timeout" do
Expand Down
2 changes: 1 addition & 1 deletion spec/identity_provider_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@
end

it "to have property Runtime" do
expect(resource["Properties"]["Runtime"]).to eq("python3.8")
expect(resource["Properties"]["Runtime"]).to eq("python3.11")
end

it "to have property Timeout" do
Expand Down
2 changes: 1 addition & 1 deletion spec/vpc_endpoint_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
end

it "to have property Runtime" do
expect(resource["Properties"]["Runtime"]).to eq("python3.8")
expect(resource["Properties"]["Runtime"]).to eq("python3.11")
end

it "to have property Timeout" do
Expand Down

0 comments on commit b8264bb

Please sign in to comment.