Skip to content

Commit cdb840b

Browse files
committed
removed packages not supp in net8
1 parent e239f23 commit cdb840b

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

.github/workflows/ci_e2e_workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
6969
# Retry a couple times to avoid certificate issue
7070
retry 5 python setup.py build
71-
retry 5 python setup.py webhost --branch-name=in-proc
71+
retry 5 python setup.py webhost --branch-name=dev
7272
retry 5 python setup.py extension
7373
mkdir logs
7474
- name: Grant execute permission

.github/workflows/ci_ut_workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
6363
# Retry a couple times to avoid certificate issue
6464
retry 5 python setup.py build
65-
retry 5 python setup.py webhost --branch-name=in-proc
65+
retry 5 python setup.py webhost --branch-name=dev
6666
mkdir logs
6767
- name: Test with pytest
6868
env:

tests/utils/constants.py

+11-14
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,31 @@
77
<?xml version="1.0" encoding="UTF-8"?>
88
<Project Sdk="Microsoft.NET.Sdk">
99
<PropertyGroup>
10-
<TargetFramework>netcoreapp3.1</TargetFramework>
10+
<TargetFramework>net8.0</TargetFramework>
1111
<WarningsAsErrors></WarningsAsErrors>
1212
<DefaultItemExcludes>**</DefaultItemExcludes>
1313
</PropertyGroup>
1414
<ItemGroup>
1515
<PackageReference Include="Azure.Messaging.EventHubs"
16-
Version="5.6.2" />
16+
Version="5.11.1" />
1717
<PackageReference Include="Azure.Messaging.EventGrid"
18-
Version="4.21.0" />
19-
<PackageReference Include="Microsoft.NET.Sdk.Functions"
20-
Version="4.0.1" />
18+
Version="4.23.0" />
2119
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.CosmosDB"
22-
Version="4.2.0" />
20+
Version="4.5.0" />
2321
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.EventHubs"
24-
Version="5.0.0" />
22+
Version="6.2.0" />
2523
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.EventGrid"
2624
Version="3.3.1" />
27-
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage"
28-
Version="4.0.5" />
25+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage.Blobs"
26+
Version="5.2.2" />
27+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage.Queues"
28+
Version="5.2.1" />
2929
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.ServiceBus"
30-
Version="4.2.1" />
30+
Version="5.14.0" />
3131
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Sql"
3232
Version="3.0.534" />
33-
<PackageReference
34-
Include="Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator"
35-
Version="1.1.3" />
3633
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask"
37-
Version="2.9.4" />
34+
Version="2.13.2" />
3835
</ItemGroup>
3936
</Project>
4037
"""

0 commit comments

Comments
 (0)