Skip to content

Commit d56743f

Browse files
authored
Allow flexible dependency versions for grpcio & protobuf (#233)
1 parent 4575e8c commit d56743f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ classifiers=[
1919
'Topic :: Software Development',
2020
'Programming Language :: Python :: 3.11',
2121
]
22-
dependencies = [ "grpcio==1.54.3", "protobuf==4.22.3" ]
22+
dependencies = [
23+
"grpcio>=1.54.3,<2.0.0",
24+
"protobuf>=4.22.3,<5.0.0"
25+
]
2326
dynamic = ["version"]
2427

2528
[tool.setuptools.dynamic]

0 commit comments

Comments
 (0)