Skip to content

Commit b28831e

Browse files
authored
Add versions table to Python ref
1 parent 9ddd896 commit b28831e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,16 @@ 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 version of Python (official CPython distributions):
366+
367+
| Functions version | Python version |
368+
| ----- | ----- |
369+
| 3.x | 3.8<br/>3.7<br/>3.6 |
370+
| 2.x | 3.7<br/>3.6 |
371+
372+
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.
373+
374+
When running locally, the runtime uses the available Python version.
366375

367376
## Package management
368377

0 commit comments

Comments
 (0)