From 31b9962dc34146ac5be341101079a0a8239899df Mon Sep 17 00:00:00 2001 From: AzureFunctionsPython Date: Mon, 1 Jun 2026 19:16:28 +0000 Subject: [PATCH 1/3] build: update Python Library Version to 1.26.0b3 --- azure/functions/__init__.py | 2 +- pyproject.toml | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/azure/functions/__init__.py b/azure/functions/__init__.py index 684e853..b79e2c3 100644 --- a/azure/functions/__init__.py +++ b/azure/functions/__init__.py @@ -113,4 +113,4 @@ 'mcp_content', ) -__version__ = '2.2.0b5' +__version__ = '1.26.0b3' diff --git a/pyproject.toml b/pyproject.toml index 4214924..ec49382 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "azure-functions" dynamic = ["version"] -requires-python = ">=3.13" +requires-python = ">=3.10,<3.13" authors = [{ name = "Azure Functions team at Microsoft Corp.", email = "azurefunctions@microsoft.com" }] description = "Python library for Azure Functions." readme = "README.md" @@ -14,8 +14,10 @@ classifiers = [ 'License :: OSI Approved :: MIT License', 'Intended Audience :: Developers', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.13', - 'Programming Language :: Python :: 3.14', + 'Programming Language :: Python :: 3.10', +'Programming Language :: Python :: 3.11', +'Programming Language :: Python :: 3.12' +, 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Operating System :: MacOS :: MacOS X', From eadb582d97d33d77b9fb630cf98d4207a8996a5f Mon Sep 17 00:00:00 2001 From: hallvictoria <59299039+hallvictoria@users.noreply.github.com> Date: Mon, 1 Jun 2026 14:29:19 -0500 Subject: [PATCH 2/3] Reorder Python version classifiers in pyproject.toml --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ec49382..2b44c9c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,9 +15,8 @@ classifiers = [ 'Intended Audience :: Developers', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.10', -'Programming Language :: Python :: 3.11', -'Programming Language :: Python :: 3.12' -, + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Operating System :: MacOS :: MacOS X', From c5201e665b16e9a81b8868afd975183206d0d262 Mon Sep 17 00:00:00 2001 From: Victoria Hall Date: Mon, 1 Jun 2026 15:35:25 -0500 Subject: [PATCH 3/3] skip 3.10 lint error --- azure/functions/decorators/function_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure/functions/decorators/function_app.py b/azure/functions/decorators/function_app.py index 78c3a39..9ed2b6f 100644 --- a/azure/functions/decorators/function_app.py +++ b/azure/functions/decorators/function_app.py @@ -1726,7 +1726,7 @@ def decorator(fb: FunctionBuilder) -> FunctionBuilder: list_item_type) for union_arg in union_args: if (isinstance(union_arg, type) - and union_arg is not + and union_arg is not # noqa type(None)): if hasattr(union_arg, '__module__'):