Skip to content

Commit 649eccc

Browse files
committed
upgrade to python 3.14
1 parent b3d2ded commit 649eccc

File tree

6 files changed

+118
-118
lines changed

6 files changed

+118
-118
lines changed

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
nodejs 22.20.0
2-
python 3.13.3
3-
poetry 2.1.4
2+
python 3.14.0
3+
poetry 2.2.1
44
shellcheck 0.11.0
55
direnv 2.37.1
66
actionlint 1.7.3

packages/cdk/constructs/DelayResource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class DelayResource extends Construct {
4040

4141
// create the delay Lambda function with inline Python code
4242
const delayFunction = new Function(this, "DelayFunction", {
43-
runtime: Runtime.PYTHON_3_12,
43+
runtime: Runtime.PYTHON_3_14,
4444
handler: "index.handler",
4545
role: lambdaExecutionRole,
4646
timeout: Duration.minutes(15), // max Lambda timeout to handle long delays

packages/cdk/constructs/LambdaFunction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export class LambdaFunction extends Construct {
129129

130130
// Create Lambda function with Python runtime and monitoring
131131
const lambdaFunction = new LambdaFunctionResource(this, props.functionName, {
132-
runtime: Runtime.PYTHON_3_13,
132+
runtime: Runtime.PYTHON_3_14,
133133
memorySize: 256,
134134
timeout: Duration.seconds(50),
135135
architecture: Architecture.X86_64,

0 commit comments

Comments
 (0)