File tree 5 files changed +17
-11
lines changed
5 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ version: 0.2
3
3
phases :
4
4
install :
5
5
runtime-versions :
6
- python : 3.12
6
+ python : 3.13
7
+ commands :
8
+ - python3 -m pip install -U aws-sam-cli
7
9
pre_build :
8
10
commands :
9
11
- cd api
@@ -27,5 +29,6 @@ artifacts:
27
29
cache :
28
30
files :
29
31
- ' /root/.cache/**/*'
32
+ - ' /root/.pyenv/**/*'
30
33
- ' /root/api/.aws-sam/**/*'
31
34
- ' /root/api/.venv/**/*'
Original file line number Diff line number Diff line change @@ -276,14 +276,14 @@ Resources:
276
276
rDependencyLayer :
277
277
Type : " AWS::Serverless::LayerVersion"
278
278
Metadata :
279
- BuildMethod : python3.12
279
+ BuildMethod : python3.13
280
280
BuildArchitecture : arm64
281
281
Properties :
282
282
LicenseInfo : MIT-0
283
283
CompatibleArchitectures :
284
284
- arm64
285
285
CompatibleRuntimes :
286
- - python3.12
286
+ - python3.13
287
287
ContentUri : dependencies
288
288
Description : !Sub "DO NOT DELETE - ${AWS::StackName} - Python Dependencies"
289
289
RetentionPolicy : Delete
@@ -391,7 +391,7 @@ Resources:
391
391
MemorySize : 1024 # megabytes
392
392
PropagateTags : true
393
393
Role : !GetAtt rApiFunctionRole.Arn
394
- Runtime : python3.12
394
+ Runtime : python3.13
395
395
Timeout : 10 # seconds
396
396
Tracing : Active
397
397
VersionDescription : !Sub "${AWS::StackName} - API"
Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ version: 0.2
3
3
phases :
4
4
install :
5
5
runtime-versions :
6
- python : 3.12
6
+ python : 3.13
7
+ commands :
8
+ - python3 -m pip install -U aws-sam-cli
7
9
pre_build :
8
10
commands :
9
11
- cd canary
@@ -27,5 +29,6 @@ artifacts:
27
29
cache :
28
30
files :
29
31
- ' /root/.cache/**/*'
32
+ - ' /root/.pyenv/**/*'
30
33
- ' /root/canary/.aws-sam/**/*'
31
34
- ' /root/canary/.venv/**/*'
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Globals:
52
52
MemorySize : 128 # megabytes
53
53
PropagateTags : true
54
54
ReservedConcurrentExecutions : 1
55
- Runtime : python3.12
55
+ Runtime : python3.13
56
56
Timeout : 1 # seconds
57
57
58
58
Mappings :
@@ -297,14 +297,14 @@ Resources:
297
297
rDependencyLayer :
298
298
Type : " AWS::Serverless::LayerVersion"
299
299
Metadata :
300
- BuildMethod : python3.12
300
+ BuildMethod : python3.13
301
301
BuildArchitecture : arm64
302
302
Properties :
303
303
LicenseInfo : MIT-0
304
304
CompatibleArchitectures :
305
305
- arm64
306
306
CompatibleRuntimes :
307
- - python3.12
307
+ - python3.13
308
308
ContentUri : dependencies
309
309
Description : !Sub "DO NOT DELETE - ${AWS::StackName} - Python Dependencies"
310
310
RetentionPolicy : Delete
Original file line number Diff line number Diff line change @@ -1038,7 +1038,7 @@ Resources:
1038
1038
Source :
1039
1039
BuildSpec : buildspec.yml
1040
1040
Type : CODEPIPELINE
1041
- TimeoutInMinutes : 30
1041
+ TimeoutInMinutes : 20
1042
1042
1043
1043
rApiCodeBuildProject :
1044
1044
Type : " AWS::CodeBuild::Project"
@@ -1074,7 +1074,7 @@ Resources:
1074
1074
Source :
1075
1075
BuildSpec : api/buildspec.yml
1076
1076
Type : CODEPIPELINE
1077
- TimeoutInMinutes : 5
1077
+ TimeoutInMinutes : 10
1078
1078
1079
1079
rCanaryCodeBuildProject :
1080
1080
Type : " AWS::CodeBuild::Project"
@@ -1110,7 +1110,7 @@ Resources:
1110
1110
Source :
1111
1111
BuildSpec : canary/buildspec.yml
1112
1112
Type : CODEPIPELINE
1113
- TimeoutInMinutes : 5
1113
+ TimeoutInMinutes : 10
1114
1114
1115
1115
rStepFunctionsRole :
1116
1116
Type : " AWS::IAM::Role"
You can’t perform that action at this time.
0 commit comments