Skip to content

Commit 5bab9c0

Browse files
Fix conflicting minimum dependencies
There was not possible to install minimum versions for grpcio-tools==1.51.1 and protobuf==4.21 because these package versions have conflicting dependencies. The conflict was caused by: The user requested protobuf==4.21 grpcio-tools 1.51.1 depends on protobuf<5.0dev and >=4.21.6 So the patch version of protobuf was updated to mitigate the conflict. Signed-off-by: Daniel Zullo <[email protected]>
1 parent 252c1f9 commit 5bab9c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies = [
3232
"grpcio-tools >= 1.51.1, < 2",
3333
"networkx >= 2.8, < 3",
3434
"pandas >= 1.5.2, < 2",
35-
"protobuf >= 4.21, < 5",
35+
"protobuf >= 4.21.6, < 5",
3636
"pyarrow >= 10.0.1, < 11",
3737
"pydantic >= 1.9",
3838
"sympy >= 1.10.1, < 2",

0 commit comments

Comments
 (0)