Skip to content

Commit e983c02

Browse files
authored
Add python 3.12 into supported version (#4517)
1 parent 7958816 commit e983c02

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/commands/createNewProject/pythonSteps/pythonVersion.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ export async function getSupportedPythonVersions(context: IActionContext, funcVe
3636
['3.0.2245', '3.8'],
3737
['3.0.3216', '3.9'],
3838
['4.0.4915', '3.10'],
39-
['4.0.5348', '3.11']
39+
['4.0.5348', '3.11'],
40+
// not sure if this is the minimum version, but I confirmed that 4.0.7030 works with Python 3.12
41+
['4.0.7030', '3.12'],
4042
];
4143

4244
for (const [minFuncVersion, pyVersion] of versionInfo) {

0 commit comments

Comments
 (0)