Skip to content

Commit b549ddb

Browse files
hallvictoriaAzureFunctionsPython
andauthored
build: update version to 4.40.1 (#1777)
* build: update workers version to 4.40.1 * migrate v1 changes * proxy worker version * 314 eol date * remove log for proxy worker --------- Co-authored-by: AzureFunctionsPython <[email protected]>
1 parent 91eceaf commit b549ddb

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

eng/templates/official/jobs/publish-library-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- template: /eng/templates/shared/github-release-branch.yml@self
1717
parameters:
1818
PROJECT_DIRECTORY: ${{ parameters.PROJECT_DIRECTORY }}
19+
PROJECT_NAME: ${{ parameters.PROJECT_NAME }}
1920
VERSION_FILE: ${{ parameters.VERSION_FILE }}
2021
BRANCH_NAME: ${{ parameters.BRANCH_NAME }}
2122

@@ -64,7 +65,7 @@ jobs:
6465
definition: 652
6566
specificBuildWithTriggering: true
6667
buildVersionToDownload: latestFromBranch
67-
branchName: refs/heads/${{ parameters.BRANCH_NAME }}/$(NewLibraryVersion)
68+
branchName: 'refs/heads/${{ parameters.BRANCH_NAME }}/$(NewLibraryVersion)'
6869
targetPath: PythonRuntimeArtifact
6970
- task: UsePythonVersion@0
7071
displayName: 'Use Python 3.13'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4-
VERSION = '1.0.0'
4+
VERSION = '1.1.0b1'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4-
VERSION = '4.40.0'
4+
VERSION = '4.40.1'

workers/proxy_worker/start_worker.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,9 @@ def start():
5757
logger.info("Args: %s", args)
5858
logger.info(
5959
'Starting proxy worker. Worker ID: %s, Request ID: %s, '
60-
'Host Address: %s:%s, Event Loop: %s',
60+
'Host Address: %s:%s',
6161
args.worker_id, args.request_id,
62-
args.host, args.port, type(asyncio.get_event_loop())
63-
)
62+
args.host, args.port)
6463

6564
try:
6665
return asyncio.run(start_async(

workers/proxy_worker/utils/constants.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@
1515

1616
# EOL Dates
1717
PYTHON_EOL_DATES = {
18-
'3.13': '2029-10'
18+
'3.13': '2029-10',
19+
'3.14': '2030-10'
1920
}
2021

2122
PYTHON_EOL_WARNING_DATES = {
22-
'3.13': '2029-04'
23+
'3.13': '2029-04',
24+
'3.14': '2030-04'
2325
}

workers/proxy_worker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4-
VERSION = "4.40.0"
4+
VERSION = "4.40.1"

workers/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ dependencies = [
4141
"grpcio~=1.70.0; python_version == '3.13'",
4242
"uvloop~=0.21.0; python_version >= '3.13' and sys_platform != 'win32'",
4343
"azurefunctions-extensions-base==1.1.0; python_version >= '3.8'",
44-
"azure-functions-runtime==1.0.0; python_version >= '3.13'",
45-
"azure-functions-runtime-v1==1.0.0; python_version >= '3.13'"
44+
"azure-functions-runtime==1.1.0b1; python_version >= '3.13'",
45+
"azure-functions-runtime-v1==1.1.0b1; python_version >= '3.13'"
4646
]
4747

4848
[project.urls]

0 commit comments

Comments
 (0)