From 09d5011edade20e720581872041dbcfb7ef46ab1 Mon Sep 17 00:00:00 2001 From: AzureFunctionsPython Date: Thu, 9 Oct 2025 18:43:58 +0000 Subject: [PATCH 1/2] build: update runtimes/v2 version to 1.1.0b2 --- runtimes/v2/azure_functions_runtime/version.py | 2 +- workers/pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/runtimes/v2/azure_functions_runtime/version.py b/runtimes/v2/azure_functions_runtime/version.py index f0e9284e..e5725220 100644 --- a/runtimes/v2/azure_functions_runtime/version.py +++ b/runtimes/v2/azure_functions_runtime/version.py @@ -1,4 +1,4 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. -VERSION = '1.1.0b1' +VERSION = '1.1.0b2' diff --git a/workers/pyproject.toml b/workers/pyproject.toml index fee44d9e..f1d9cbd8 100644 --- a/workers/pyproject.toml +++ b/workers/pyproject.toml @@ -44,7 +44,7 @@ dependencies = [ "grpcio~=1.75.1; python_version == '3.14'", "uvloop~=0.21.0; python_version >= '3.13' and sys_platform != 'win32'", "azurefunctions-extensions-base==1.1.0; python_version >= '3.8'", - "azure-functions-runtime==1.1.0b1; python_version >= '3.13'", + "azure-functions-runtime==; python_version >= '3.13'", "azure-functions-runtime-v1==1.1.0b1; python_version >= '3.13'" ] @@ -139,4 +139,4 @@ version = {attr = "azure_functions_worker.version.VERSION"} [tool.pytest.ini_options] pythonpath = ["workers"] -testpaths = ["workers/tests", "runtimes/v2/azure_functions_runtime/tests", "runtimes/v1/azure_functions_runtime_v1/tests"] +testpaths = ["workers/tests", "runtimes/v2/azure_functions_runtime/tests", "runtimes/v1/azure_functions_runtime_v1/tests"] \ No newline at end of file From eda76e4046431c0211df256786f504ee40f30b27 Mon Sep 17 00:00:00 2001 From: Victoria Hall Date: Thu, 9 Oct 2025 13:50:11 -0500 Subject: [PATCH 2/2] fix pyproject --- workers/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/pyproject.toml b/workers/pyproject.toml index f1d9cbd8..2e5f7faa 100644 --- a/workers/pyproject.toml +++ b/workers/pyproject.toml @@ -44,7 +44,7 @@ dependencies = [ "grpcio~=1.75.1; python_version == '3.14'", "uvloop~=0.21.0; python_version >= '3.13' and sys_platform != 'win32'", "azurefunctions-extensions-base==1.1.0; python_version >= '3.8'", - "azure-functions-runtime==; python_version >= '3.13'", + "azure-functions-runtime==1.1.0b2; python_version >= '3.13'", "azure-functions-runtime-v1==1.1.0b1; python_version >= '3.13'" ]