Skip to content
Merged
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 @@ -113,4 +113,4 @@
'mcp_content',
)

__version__ = '2.2.0b5'
__version__ = '1.26.0b3'
2 changes: 1 addition & 1 deletion azure/functions/decorators/function_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__'):
Expand Down
7 changes: 4 additions & 3 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.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"
Expand All @@ -14,8 +14,9 @@ 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',
Expand Down
Loading