File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## NOT RELEASED
4
4
5
+ ### Added
6
+
7
+ - AWS api-change: Add Python 3.13 (python3.13) support to AWS Lambda
8
+
5
9
### Changed
6
10
7
11
- AWS enhancement: Documentation updates.
Original file line number Diff line number Diff line change 28
28
},
29
29
"extra" : {
30
30
"branch-alias" : {
31
- "dev-master" : " 2.6 -dev"
31
+ "dev-master" : " 2.7 -dev"
32
32
}
33
33
}
34
34
}
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ final class Runtime
34
34
public const PYTHON_3_10 = 'python3.10 ' ;
35
35
public const PYTHON_3_11 = 'python3.11 ' ;
36
36
public const PYTHON_3_12 = 'python3.12 ' ;
37
+ public const PYTHON_3_13 = 'python3.13 ' ;
37
38
public const PYTHON_3_6 = 'python3.6 ' ;
38
39
public const PYTHON_3_7 = 'python3.7 ' ;
39
40
public const PYTHON_3_8 = 'python3.8 ' ;
@@ -76,6 +77,7 @@ public static function exists(string $value): bool
76
77
self ::PYTHON_3_10 => true ,
77
78
self ::PYTHON_3_11 => true ,
78
79
self ::PYTHON_3_12 => true ,
80
+ self ::PYTHON_3_13 => true ,
79
81
self ::PYTHON_3_6 => true ,
80
82
self ::PYTHON_3_7 => true ,
81
83
self ::PYTHON_3_8 => true ,
You can’t perform that action at this time.
0 commit comments