Skip to content

Commit 85d67da

Browse files
committed
Update Node.js and Python runtimes
1 parent 68ba6c0 commit 85d67da

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

cjs/index.js

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ let runtimes = {
55
node: [
66
'nodejs20.x',
77
'nodejs22.x',
8-
'nodejs18.x',
8+
'nodejs24.x',
99
],
1010
python: [
1111
'python3.12',
1212
'python3.13',
13+
'python3.14',
1314
'python3.11',
1415
'python3.10',
1516
'python3.9',
@@ -34,6 +35,13 @@ let runtimes = {
3435
}
3536

3637
let runtimeVersions = {
38+
'nodejs24.x': {
39+
runtime: 'node',
40+
major: '24',
41+
minor: null,
42+
patch: null,
43+
wildcard: '24.*.*'
44+
},
3745
'nodejs22.x': {
3846
runtime: 'node',
3947
major: '22',
@@ -48,12 +56,12 @@ let runtimeVersions = {
4856
patch: null,
4957
wildcard: '20.*.*'
5058
},
51-
'nodejs18.x': {
52-
runtime: 'node',
53-
major: '18',
54-
minor: null,
59+
'python3.14': {
60+
runtime: 'python',
61+
major: '3',
62+
minor: '14',
5563
patch: null,
56-
wildcard: '18.*.*'
64+
wildcard: '3.14.*',
5765
},
5866
'python3.13': {
5967
runtime: 'python',
@@ -191,6 +199,7 @@ let aliases = {
191199

192200
let retiredRuntimes = {
193201
node: [
202+
'nodejs18.x',
194203
'nodejs16.x',
195204
'nodejs14.x',
196205
'nodejs12.x',

0 commit comments

Comments
 (0)