Skip to content

Commit

Permalink
Bump pythont o 3.8 due to 3.7 EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
tarunmenon95 committed Oct 26, 2023
1 parent 974a731 commit a5e9e14
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 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.7
runtime: python3.8
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.7
runtime: python3.8
timeout: 60
role: GetVpcEndpointIPs

Expand Down
2 changes: 1 addition & 1 deletion 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.7")
expect(resource["Properties"]["Runtime"]).to eq("python3.8")
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.7")
expect(resource["Properties"]["Runtime"]).to eq("python3.8")
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.7")
expect(resource["Properties"]["Runtime"]).to eq("python3.8")
end

it "to have property Timeout" do
Expand Down

0 comments on commit a5e9e14

Please sign in to comment.