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
3 changes: 2 additions & 1 deletion eng/templates/official/jobs/publish-library-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- template: /eng/templates/shared/github-release-branch.yml@self
parameters:
PROJECT_DIRECTORY: ${{ parameters.PROJECT_DIRECTORY }}
PROJECT_NAME: ${{ parameters.PROJECT_NAME }}
VERSION_FILE: ${{ parameters.VERSION_FILE }}
BRANCH_NAME: ${{ parameters.BRANCH_NAME }}

Expand Down Expand Up @@ -64,7 +65,7 @@ jobs:
definition: 652
specificBuildWithTriggering: true
buildVersionToDownload: latestFromBranch
branchName: refs/heads/${{ parameters.BRANCH_NAME }}/$(NewLibraryVersion)
branchName: 'refs/heads/${{ parameters.BRANCH_NAME }}/$(NewLibraryVersion)'
targetPath: PythonRuntimeArtifact
- task: UsePythonVersion@0
displayName: 'Use Python 3.13'
Expand Down
2 changes: 1 addition & 1 deletion runtimes/v1/azure_functions_runtime_v1/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

VERSION = '1.0.0'
VERSION = '1.1.0b1'
2 changes: 1 addition & 1 deletion workers/azure_functions_worker/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

VERSION = '4.40.0'
VERSION = '4.40.1'
5 changes: 2 additions & 3 deletions workers/proxy_worker/start_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,9 @@ def start():
logger.info("Args: %s", args)
logger.info(
'Starting proxy worker. Worker ID: %s, Request ID: %s, '
'Host Address: %s:%s, Event Loop: %s',
'Host Address: %s:%s',
args.worker_id, args.request_id,
args.host, args.port, type(asyncio.get_event_loop())
)
args.host, args.port)

try:
return asyncio.run(start_async(
Expand Down
6 changes: 4 additions & 2 deletions workers/proxy_worker/utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@

# EOL Dates
PYTHON_EOL_DATES = {
'3.13': '2029-10'
'3.13': '2029-10',
'3.14': '2030-10'
}

PYTHON_EOL_WARNING_DATES = {
'3.13': '2029-04'
'3.13': '2029-04',
'3.14': '2030-04'
}
2 changes: 1 addition & 1 deletion workers/proxy_worker/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

VERSION = "4.40.0"
VERSION = "4.40.1"
4 changes: 2 additions & 2 deletions workers/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ dependencies = [
"grpcio~=1.70.0; python_version == '3.13'",
"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.0.0; python_version >= '3.13'",
"azure-functions-runtime-v1==1.0.0; python_version >= '3.13'"
"azure-functions-runtime==1.1.0b1; python_version >= '3.13'",
"azure-functions-runtime-v1==1.1.0b1; python_version >= '3.13'"
]

[project.urls]
Expand Down