From 65d406c6d6acbc71abf2526ea18b79ef6429fd47 Mon Sep 17 00:00:00 2001 From: AzureFunctionsPython Date: Tue, 24 Mar 2026 16:54:09 +0000 Subject: [PATCH 1/2] build: update Python Library Version to 2.0.0b1 --- azure/functions/__init__.py | 2 +- pyproject.toml | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/azure/functions/__init__.py b/azure/functions/__init__.py index e3ffe6cf..b55e0741 100644 --- a/azure/functions/__init__.py +++ b/azure/functions/__init__.py @@ -107,4 +107,4 @@ 'McpPropertyType' ) -__version__ = '1.25.0b4' +__version__ = '2.0.0b1' diff --git a/pyproject.toml b/pyproject.toml index a10c308d..79b5377b 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.10" +requires-python = ">=3.13" authors = [{ name = "Azure Functions team at Microsoft Corp.", email = "azurefunctions@microsoft.com" }] description = "Python library for Azure Functions." readme = "README.md" @@ -14,11 +14,8 @@ classifiers = [ 'License :: OSI Approved :: MIT License', '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.13', - 'Programming Language :: Python :: 3.14', +'Programming Language :: Python :: 3.14', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Operating System :: MacOS :: MacOS X', From 31425087dda94a6aa08516b9f271d76dcdf63661 Mon Sep 17 00:00:00 2001 From: Victoria Hall Date: Tue, 24 Mar 2026 15:14:08 -0500 Subject: [PATCH 2/2] update pyproject --- pyproject.toml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 79b5377b..9a26bc0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ 'Intended Audience :: Developers', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.13', -'Programming Language :: Python :: 3.14', + 'Programming Language :: Python :: 3.14', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Operating System :: MacOS :: MacOS X', @@ -23,9 +23,7 @@ classifiers = [ 'Development Status :: 5 - Production/Stable', ] dependencies = [ - 'werkzeug~=3.1.3; python_version >= "3.9"', - 'werkzeug~=3.0.6; python_version == "3.8"', - 'werkzeug; python_version < "3.8"' + 'werkzeug~=3.1.3', ] [project.optional-dependencies] dev = [ @@ -35,8 +33,7 @@ dev = [ 'pytest-instafail', 'pre-commit', 'azure-functions-durable', - 'flake8~=4.0.1; python_version < "3.11"', - 'flake8~=7.1.1; python_version >= "3.11"', + 'flake8~=7.1.1', 'flake8-docstrings' ]