Skip to content

Commit 11ce426

Browse files
authored
Update Python Worker Version to 4.35.0 (#10805)
* Update Python Worker Version to 4.35.0 * update codeowners * remove target * indentation
1 parent 0ed47f5 commit 11ce426

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @azure/azure-functions-core
99

1010
# Adding codeowner for Python specific files such that GitHub automatically adds python folks as a reviewer.
11-
eng/build/Workers.Python.props @vrdmr @gavin-aguiar @YunchuWang @pdthummar @hallvictoria
11+
eng/build/Workers.Python.props @vrdmr @gavin-aguiar @hallvictoria
1212

1313
# Deps.json validation file
1414
test/WebJobs.Script.Tests/Microsoft.Azure.WebJobs.Script.WebHost.deps.json @fabiocav @brettsam @mathewc

eng/build/Workers.Python.props

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,7 @@
22

33
<ItemGroup>
44
<!-- Python worker does not ship with the host for windows. -->
5-
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.34.0" Condition="!$(RuntimeIdentifier.StartsWith('win'))" />
5+
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.35.0" Condition="!$(RuntimeIdentifier.StartsWith('win'))" />
66
</ItemGroup>
77

8-
<!-- PythonWorker package injects its content files through custom targets. -->
9-
<Target Name="SuppressPythonWorker" AfterTargets="Initialize" BeforeTargets="CopyOnPublish" Condition="$(RuntimeIdentifier.StartsWith('win'))">
10-
<ItemGroup>
11-
<SourceFiles Remove="@(SourceFiles)" />
12-
</ItemGroup>
13-
</Target>
14-
158
</Project>

release_notes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@
1616
- Updated `WebJobs.Script` to target .NET 8 (instead of .NET Standard 2.1)
1717
- Allow for binding names to use snake case (#10764). Examples include `_`, `binding_name`, and `_binding`.
1818
- Add support for the release channel setting `WEBSITE_PlatformReleaseChannel` and use this value in extension bundles resolution.
19-
- Update PowerShell 7.4 worker to [4.0.4134](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.4134)
19+
- Update PowerShell 7.4 worker to [4.0.4134](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.4134)
20+
- Update Python Worker Version to [4.35.0](https://github.com/Azure/azure-functions-python-worker/releases/tag/4.35.0)

test/WebJobs.Script.Tests/WebJobs.Script.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
@@ -30,7 +30,7 @@
3030
<PackageReference Include="FluentAssertions" Version="5.9.0" />
3131
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.0" />
3232
<PackageReference Include="Microsoft.Extensions.Diagnostics.Testing" Version="8.1.0" />
33-
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.34.0" />
33+
<PackageReference Include="Microsoft.Azure.Functions.PythonWorker" Version="4.35.0" />
3434
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
3535
<PackageReference Include="Moq" Version="4.18.4" />
3636
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">

0 commit comments

Comments
 (0)