Skip to content

Commit 6b2b7b7

Browse files
authored
Update supported python versions and remove old ones (#4783)
1 parent af7816a commit 6b2b7b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commands/createNewProject/pythonSteps/pythonVersion.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ export async function getSupportedPythonVersions(context: IActionContext, funcVe
3131

3232
const result: string[] = [];
3333

34+
// TODO: https://github.com/microsoft/vscode-azurefunctions/issues/4778
3435
const versionInfo: [string, string][] = [
35-
['2.7.1846', '3.7'],
36-
['3.0.2245', '3.8'],
37-
['3.0.3216', '3.9'],
3836
['4.0.4915', '3.10'],
3937
['4.0.5348', '3.11'],
4038
// not sure if this is the minimum version, but I confirmed that 4.0.7030 works with Python 3.12
4139
['4.0.7030', '3.12'],
40+
['4.0.7030', '3.13'],
41+
['4.0.7030', '3.14'],
4242
];
4343

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

0 commit comments

Comments
 (0)