Skip to content

Commit

Permalink
Merge pull request #10 from theonestack/feature/python-bump
Browse files Browse the repository at this point in the history
bump python version to 3.8 due to EOL
  • Loading branch information
jaredbrook committed Oct 26, 2023
2 parents a4f2b02 + 67afc5b commit 7b44850
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion amazonmq.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ ssm_custom_resources:
SSMSecureParameterCR:
code: handler.py
handler: handler.lambda_handler
runtime: python3.7
runtime: python3.8
timeout: 5
role: SSMParameterCustomResource
2 changes: 1 addition & 1 deletion spec/amq_xml_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,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/default_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,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/engine_version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,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/logging_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,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/maintenance_window_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
2 changes: 1 addition & 1 deletion spec/security_groups_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
2 changes: 1 addition & 1 deletion spec/tags_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,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/users_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,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 7b44850

Please sign in to comment.