File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "variables" : {
3- "${LATEST}" : " 3.325.5 "
3+ "${LATEST}" : " 3.325.6 "
44 },
55 "endpoints" : " https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json" ,
66 "services" : {
Original file line number Diff line number Diff line change 22
33## NOT RELEASED
44
5+ ### Added
6+
7+ - AWS api-change: Add Python 3.13 (python3.13) support to AWS Lambda
8+
59### Changed
610
711- AWS enhancement: Documentation updates.
Original file line number Diff line number Diff line change 2828 },
2929 "extra" : {
3030 "branch-alias" : {
31- "dev-master" : " 2.6 -dev"
31+ "dev-master" : " 2.7 -dev"
3232 }
3333 }
3434}
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ final class Runtime
3434 public const PYTHON_3_10 = 'python3.10 ' ;
3535 public const PYTHON_3_11 = 'python3.11 ' ;
3636 public const PYTHON_3_12 = 'python3.12 ' ;
37+ public const PYTHON_3_13 = 'python3.13 ' ;
3738 public const PYTHON_3_6 = 'python3.6 ' ;
3839 public const PYTHON_3_7 = 'python3.7 ' ;
3940 public const PYTHON_3_8 = 'python3.8 ' ;
@@ -76,6 +77,7 @@ public static function exists(string $value): bool
7677 self ::PYTHON_3_10 => true ,
7778 self ::PYTHON_3_11 => true ,
7879 self ::PYTHON_3_12 => true ,
80+ self ::PYTHON_3_13 => true ,
7981 self ::PYTHON_3_6 => true ,
8082 self ::PYTHON_3_7 => true ,
8183 self ::PYTHON_3_8 => true ,
You can’t perform that action at this time.
0 commit comments