diff --git a/schema/staticwebapp.config.json b/schema/staticwebapp.config.json index 0dd242695..4e3ca0ca8 100644 --- a/schema/staticwebapp.config.json +++ b/schema/staticwebapp.config.json @@ -598,7 +598,10 @@ "node:20", "python:3.8", "python:3.9", - "python:3.10" + "python:3.10", + "python:3.11", + "python:3.12", + "python:3.13" ], "description": "Language runtime for the managed functions API" } diff --git a/src/core/constants.ts b/src/core/constants.ts index e0f8ddcd7..5843b411d 100644 --- a/src/core/constants.ts +++ b/src/core/constants.ts @@ -308,7 +308,7 @@ export const SUPPORTED_VERSIONS = { Node: ["12", "14", "16", "18"], Dotnet: ["3.1", "6.0"], DotnetIsolated: ["6.0", "7.0", "8.0"], - Python: ["3.8", "3.9", "3.10"], + Python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"], }; export const DEFAULT_RUNTIME_LANGUAGE = "node";