Skip to content

Commit 3320aa2

Browse files
author
Glenn Gailey
committed
Merge branch 'storage' of https://github.com/ggailey777/azure-docs-pr into storage
2 parents cfa3103 + eccb5c7 commit 3320aa2

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

articles/azure-functions/functions-reference-python.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,18 @@ For local development, application settings are [maintained in the local.setting
362362

363363
## Python version
364364

365-
Currently, Azure Functions supports both Python 3.6.x and 3.7.x (official CPython distributions). When running locally, the runtime uses the available Python version. To request a specific Python version when you create your function app in Azure, use the `--runtime-version` option of the [`az functionapp create`](/cli/azure/functionapp#az-functionapp-create) command. Version change is allowed only on Function App creation.
365+
Azure Functions supports the following Python versions:
366+
367+
| Functions version | Python<sup>*</sup> versions |
368+
| ----- | ----- |
369+
| 3.x | 3.8<br/>3.7<br/>3.6 |
370+
| 2.x | 3.7<br/>3.6 |
371+
372+
<sup>*</sup>Official CPython distributions
373+
374+
To request a specific Python version when you create your function app in Azure, use the `--runtime-version` option of the [`az functionapp create`](/cli/azure/functionapp#az-functionapp-create) command. The Functions runtime version is set by the `--functions-version` option. The Python version is set when the function app is created and can't be changed.
375+
376+
When running locally, the runtime uses the available Python version.
366377

367378
## Package management
368379

articles/azure-functions/scripts/functions-cli-mount-files-storage-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 03/01/2020
1010
This Azure Functions sample script creates a function app and creates a share in Azure Files. It them mounts the share so that the data can be accessed by your functions.
1111

1212
>[!NOTE]
13-
>The function app created runs on Python version 3.6. Python version 3.7 is also supported by Azure Functions.
13+
>The function app created runs on Python version 3.7. Azure Functions also [supports Python versions 3.6 and 3.8](../functions-reference-python.md#python-version).
1414
1515
[!INCLUDE [quickstarts-free-trial-note](../../../includes/quickstarts-free-trial-note.md)]
1616

0 commit comments

Comments
 (0)