Skip to content

Commit 5e177ba

Browse files
authored
Merge pull request #231660 from ggailey777/patch-3
Clarify lack of Python v2 support.
2 parents d7fe005 + b61e973 commit 5e177ba

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

includes/functions-portal-language-support.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,28 @@
22
author: ggailey777
33
ms.service: azure-functions
44
ms.topic: include
5-
ms.date: 06/10/2022
5+
ms.date: 03/21/2023
66
ms.author: glenga
77
ms.custom: devdivchpfy22
88
---
99

1010
## Language support details
1111

12-
The following table shows which languages supported by Functions can run on Linux or Windows. It also indicates whether your language supports editing in the Azure portal. The language is based on the **Runtime stack** option you choose when [creating your function app in the Azure portal](../articles/azure-functions/functions-create-function-app-portal.md#create-a-function-app). This is the same as the `--worker-runtime` option when using the `func init` command in Azure Functions Core Tools.
12+
The following table shows which languages supported by Functions can run on Linux or Windows. It also indicates whether your language supports editing in the Azure portal. The language is based on the **Runtime stack** option you choose when [creating your function app in the Azure portal](../articles/azure-functions/functions-create-function-app-portal.md#create-a-function-app). This is the same as the `--worker-runtime` option when using the `func init` command in Azure Functions Core Tools.
1313

1414
| Language | Runtime stack | Linux | Windows | In-portal editing |
1515
|:--- |:-- |:--|:--- |:--- |
1616
| [C# class library](../articles/azure-functions/functions-dotnet-class-library.md)<sup>1</sup> |.NET||| |
1717
| [C# script](../articles/azure-functions/functions-reference-csharp.md) | .NET ||||
1818
| [JavaScript](../articles/azure-functions/functions-reference-node.md) | Node.js ||||
19-
| [Python](../articles/azure-functions/functions-reference-python.md) | Python || ||
19+
| [Python](../articles/azure-functions/functions-reference-python.md)<sup>2</sup> | Python || ||
2020
| [Java](../articles/azure-functions/functions-reference-java.md) | Java ||| |
2121
| [PowerShell](../articles/azure-functions/functions-reference-powershell.md) |PowerShell Core ||||
2222
| [TypeScript](../articles/azure-functions/functions-reference-node.md) | Node.js ||| |
2323
| [Go/Rust/other](../articles/azure-functions/functions-custom-handlers.md) | Custom Handlers ||| |
2424

25-
<sup>1</sup> In the portal, you can't currently create function apps that run on .NET 7.0. For more information, see [Guide for running C# Azure Functions in an isolated worker process](../articles/azure-functions/dotnet-isolated-process-guide.md).
25+
<sup>1</sup> In the portal, you can't currently create function apps that run on .NET 7.0. For more information, see [Guide for running C# Azure Functions in an isolated worker process](../articles/azure-functions/dotnet-isolated-process-guide.md).
26+
<sup>2</sup> In-portal editing requires your function to be defined in a function.json file. Because the [Python v2 programming model](../articles/azure-functions/functions-reference-python.md?pivots=python-mode-decorators#programming-model) uses Python code decorators instead of function.json to define functions, only the Python v1 programming model is supported for in-portal development.
2627

2728
For more information on operating system and language support, see [Operating system/runtime support](../articles/azure-functions/functions-scale.md#operating-systemruntime).
2829

0 commit comments

Comments
 (0)