From 83f3fa421d9f30f9bdd07a92cc38026f5cb08d3a Mon Sep 17 00:00:00 2001 From: AzureFunctionsPython Date: Tue, 21 Apr 2026 20:50:14 +0000 Subject: [PATCH 1/2] build: update Python Library Version to 1.26.0b2 --- 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 9eff7eb4..531bb7b7 100644 --- a/azure/functions/__init__.py +++ b/azure/functions/__init__.py @@ -112,4 +112,4 @@ 'mcp_content', ) -__version__ = '2.2.0b1' +__version__ = '1.26.0b2' diff --git a/pyproject.toml b/pyproject.toml index 42149240..ec49382d 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 af3e82dab467c5bda50f8186dfc120b27d49f1bd Mon Sep 17 00:00:00 2001 From: hallvictoria <59299039+hallvictoria@users.noreply.github.com> Date: Tue, 21 Apr 2026 15:51:08 -0500 Subject: [PATCH 2/2] 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 ec49382d..2b44c9c1 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',