Skip to content

Commit 436dfbf

Browse files
committed
bump protobuf version for <= 3.12
1 parent 4453464 commit 436dfbf

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

eng/ci/public-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,20 +74,20 @@ extends:
7474
# Skip the build stage for SDK and Extensions release branches. This stage will fail because pyproject.toml contains the updated (and unreleased) library version
7575
condition: and(eq(variables.isSdkRelease, false), eq(variables.isExtensionsRelease, false), eq(variables['USETESTPYTHONSDK'], false), eq(variables['USETESTPYTHONEXTENSIONS'], false))
7676
- stage: CheckPythonWorkerDependencies
77-
dependsOn: []
77+
dependsOn: BuildPythonWorker
7878
jobs:
7979
- template: /eng/templates/jobs/ci-dependency-check.yml@self
8080
parameters:
8181
PoolName: 1es-pool-azfunc-public
8282
- stage: RunWorkerUnitTests
83-
dependsOn: CheckPythonWorkerDependencies
83+
dependsOn: BuildPythonWorker
8484
jobs:
8585
- template: /eng/templates/jobs/ci-unit-tests.yml@self
8686
parameters:
8787
PROJECT_DIRECTORY: 'workers'
8888
PoolName: 1es-pool-azfunc-public
8989
- stage: RunWorkerEmulatorTests
90-
dependsOn: CheckPythonWorkerDependencies
90+
dependsOn: BuildPythonWorker
9191
jobs:
9292
- template: /eng/templates/jobs/ci-emulator-tests.yml@self
9393
parameters:

workers/pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ dependencies = [
2828
"azure-functions==1.24.0; python_version < '3.10'",
2929
"azure-functions==1.25.0b4; python_version >= '3.10'",
3030
"python-dateutil~=2.9.0",
31-
"protobuf~=4.25.3; python_version < '3.13'",
32-
"protobuf~=5.29.0; python_version == '3.13'",
31+
"protobuf~=5.29.0; python_version <= '3.13'",
3332
"protobuf~=6.33.1; python_version == '3.14'",
34-
"grpcio-tools~=1.59.0;python_version < '3.13'",
35-
"grpcio-tools~=1.70.0; python_version == '3.13'",
33+
"grpcio-tools~=1.70.0; python_version <= '3.13'",
3634
"grpcio-tools~=1.75.1; python_version == '3.14'",
3735
"grpcio~=1.59.0; python_version < '3.13'",
3836
"grpcio~=1.70.0; python_version == '3.13'",

0 commit comments

Comments
 (0)