Skip to content

Commit 907f3c5

Browse files
committed
Update python version from 3.12 to 3.13
1 parent deb3745 commit 907f3c5

File tree

14 files changed

+738
-960
lines changed

14 files changed

+738
-960
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Python 3.12
3636
uses: actions/setup-python@v4
3737
with:
38-
python-version: 3.12
38+
python-version: 3.13
3939

4040
- name: Install uv
4141
uses: astral-sh/setup-uv@v5

.github/workflows/reusable_unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616

1717
- uses: actions/setup-python@v4
18-
with: { python-version: 3.12 }
18+
with: { python-version: 3.13 }
1919

2020
- name: Install uv
2121
uses: astral-sh/setup-uv@v5

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.DS_Store
22
.idea/*
3+
.kiro/*
34
**/.aws-sam/
45
.vscode/*
56
.vscode/settings.json

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12.11
1+
3.13

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
name = "aws-serverless-developer-experience-workshop-python"
33
version = "0.1.0"
44
description = "Add your description here"
5-
requires-python = ">=3.12"
5+
requires-python = ">=3.13"
66
dependencies = []

unicorn_approvals/infrastructure/approvals-service/template.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Conditions:
4848

4949
Globals:
5050
Function:
51-
Runtime: python3.12
51+
Runtime: python3.13
5252
MemorySize: 512
5353
Timeout: 10
5454
Tracing: Active
@@ -96,7 +96,7 @@ Resources:
9696
StatusChangedEvent:
9797
Type: EventBridgeRule
9898
Properties:
99-
RuleName: unicorn-approvals-ContractStatusChanged
99+
RuleName: unicorn-approvals-ContractStatusChanged-foo
100100
EventBusName: !Sub "{{resolve:ssm:/uni-prop/${Stage}/ApprovalsEventBus}}"
101101
Pattern:
102102
source:
@@ -242,7 +242,7 @@ Resources:
242242
PublicationApprovalRequestedEvent:
243243
Type: EventBridgeRule
244244
Properties:
245-
RuleName: unicorn-approvals-PublicationApprovalRequested
245+
RuleName: unicorn-approvals-PublicationApprovalRequested-foo
246246
EventBusName: !Sub "{{resolve:ssm:/uni-prop/${Stage}/ApprovalsEventBus}}"
247247
Pattern:
248248
source:
@@ -346,7 +346,7 @@ Resources:
346346
DeletionPolicy: Delete
347347
UpdateReplacePolicy: Delete
348348
Properties:
349-
Name: approvals.catchall
349+
Name: approvals.catchall-foo
350350
Description: Catchall rule used for development purposes.
351351
EventBusName: !Sub "{{resolve:ssm:/uni-prop/${Stage}/ApprovalsEventBus}}"
352352
EventPattern:
@@ -367,7 +367,7 @@ Resources:
367367
DeletionPolicy: Delete
368368
Properties:
369369
LogGroupName: !Sub
370-
- "/aws/events/${Stage}/${NS}-catchall"
370+
- "/aws/events/${Stage}/${NS}-catchall-foo"
371371
- Stage: !Ref Stage
372372
NS: "{{resolve:ssm:/uni-prop/UnicornApprovalsNamespace}}"
373373
RetentionInDays: !FindInMap [LogsRetentionPeriodMap, !Ref Stage, Days]

unicorn_approvals/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
{name = "Amazon Web Services"}
77
]
88
readme = "README.md"
9-
requires-python = ">=3.12"
9+
requires-python = ">=3.13"
1010

1111
dependencies = [
1212
"aws-lambda-powertools[tracer]>=3.18.0",

unicorn_approvals/uv.lock

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

unicorn_contracts/infrastructure/contracts-service/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Globals:
4848
Api:
4949
OpenApiVersion: 3.0.1
5050
Function:
51-
Runtime: python3.12
51+
Runtime: python3.13
5252
MemorySize: 512
5353
Timeout: 15
5454
Tracing: Active

unicorn_contracts/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
{name = "Amazon Web Services"}
77
]
88
readme = "README.md"
9-
requires-python = ">=3.12"
9+
requires-python = ">=3.13"
1010

1111
dependencies = [
1212
"aws-lambda-powertools[tracer]>=3.18.0",

0 commit comments

Comments
 (0)