Skip to content

Commit f1453ad

Browse files
author
Paul Topley
authored
Merge pull request #85 from epsylabs/python-3-11-support
Update supported python and node runtime versions
2 parents 171e7c6 + b643975 commit f1453ad

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

serverless/aws/provider.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,15 @@
1414

1515

1616
class Runtime(yaml.YAMLObject):
17-
NODE_10 = "nodejs10"
18-
NODE_12 = "nodejs12"
1917
NODE_14 = "nodejs14"
2018
NODE_16 = "nodejs16"
19+
NODE_18 = "nodejs18"
2120

22-
PYTHON_2_7 = "python2.7"
23-
PYTHON_3_6 = "python3.6"
2421
PYTHON_3_7 = "python3.7"
2522
PYTHON_3_8 = "python3.8"
2623
PYTHON_3_9 = "python3.9"
24+
PYTHON_3_10 = "python3.10"
25+
PYTHON_3_11 = "python3.11"
2726

2827
yaml_tag = "!Runtime"
2928

0 commit comments

Comments
 (0)