Skip to content

Commit 258eeee

Browse files
authored
Bump protobuf and grpcio versions (#356)
2 parents 3435472 + e4fd342 commit 258eeee

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ requires = [
1010
# sure the code is generated using the minimum supported versions, as older
1111
# versions can't work with code that was generated with newer versions.
1212
# https://protobuf.dev/support/cross-version-runtime-guarantee/#backwards
13-
"protobuf == 5.29.3",
14-
"grpcio-tools == 1.70.0",
15-
"grpcio == 1.70.0",
13+
"protobuf == 6.31.1",
14+
"grpcio-tools == 1.72.1",
15+
"grpcio == 1.72.1",
1616
]
1717
build-backend = "setuptools.build_meta"
1818

@@ -36,11 +36,11 @@ dependencies = [
3636
# We can't widen beyond the current value unless we bump the minimum
3737
# requirements too because of protobuf cross-version runtime guarantees:
3838
# https://protobuf.dev/support/cross-version-runtime-guarantee/#major
39-
"protobuf >= 5.29.3, < 7", # Do not widen beyond 7!
39+
"protobuf >= 6.31.1, < 8", # Do not widen beyond 8!
4040
# We couldn't find any document with a spec about the cross-version runtime
4141
# guarantee for grpcio, so unless we find one in the future, we'll assume
4242
# major version jumps are not compatible
43-
"grpcio >= 1.70.0, < 2", # Do not widen beyond 2!
43+
"grpcio >= 1.72.1, < 2", # Do not widen beyond 2!
4444
]
4545
dynamic = ["version"]
4646

0 commit comments

Comments
 (0)