Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion azure/functions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@
'McpPropertyType'
)

__version__ = '1.25.0b3'
__version__ = '2.0.0'
9 changes: 2 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -14,9 +14,6 @@ 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',
'Operating System :: Microsoft :: Windows',
Expand All @@ -26,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 = [
Expand Down
Loading