Skip to content

Commit 0f105e9

Browse files
authored
Update runtime to 2.0.12285 (#1001)
* Update runtime to 2.0.12285 * Updating python dependencies
1 parent 2467d68 commit 0f105e9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build/Settings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ private static string config(string @default = null, [CallerMemberName] string k
4141

4242
public const string DistLibUrl = "https://github.com/vsajip/distlib/archive/15dba58a827f56195b0fa0afe80a8925a92e8bf5.zip";
4343

44-
public const string PythonWorkerUrl = "https://raw.githubusercontent.com/Azure/azure-functions-python-worker/1.0.0a6/python/worker.py";
44+
public const string PythonWorkerUrl = "https://raw.githubusercontent.com/Azure/azure-functions-python-worker/1.0.0b3/python/worker.py";
4545

46-
public const string PythonWorkerConfigUrl = "https://raw.githubusercontent.com/Azure/azure-functions-python-worker/1.0.0a6/python/worker.config.json";
46+
public const string PythonWorkerConfigUrl = "https://raw.githubusercontent.com/Azure/azure-functions-python-worker/1.0.0b3/python/worker.config.json";
4747

4848
public static readonly string OutputDir = Path.Combine(Path.GetFullPath(".."), "artifacts");
4949

src/Azure.Functions.Cli/Azure.Functions.Cli.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@
7878
<PackageReference Include="KubeClient.Extensions.KubeConfig" Version="2.1.5" />
7979
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="2.2.0" />
8080
<PackageReference Include="Microsoft.Azure.DurableTask.AzureStorage.Internal" Version="1.4.0" />
81-
<PackageReference Include="Microsoft.Azure.Functions.JavaWorker" Version="1.2.3" />
82-
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="1.0.0-beta7" />
81+
<PackageReference Include="Microsoft.Azure.Functions.JavaWorker" Version="1.2.6" />
82+
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="1.0.1" />
8383
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker" Version="0.1.52-alpha" />
84-
<PackageReference Include="Microsoft.Azure.WebJobs.Script.WebHost" Version="2.0.12265" />
84+
<PackageReference Include="Microsoft.Azure.WebJobs.Script.WebHost" Version="2.0.12285" />
8585
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
8686
</ItemGroup>
8787
</Project>

src/Azure.Functions.Cli/Helpers/PythonHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Azure.Functions.Cli.Helpers
1313
{
1414
public static class PythonHelpers
1515
{
16-
private static readonly string[] _workerPackages = new[] { "azure-functions==1.0.0a5", "azure-functions-worker==1.0.0a6" };
16+
private static readonly string[] _workerPackages = new[] { "azure-functions==1.0.0b3", "azure-functions-worker==1.0.0b3" };
1717
private static bool InVirtualEnvironment => !string.IsNullOrEmpty(VirtualEnvironmentPath);
1818
public static string VirtualEnvironmentPath => Environment.GetEnvironmentVariable("VIRTUAL_ENV");
1919

0 commit comments

Comments
 (0)