File tree Expand file tree Collapse file tree 3 files changed +71
-69
lines changed Expand file tree Collapse file tree 3 files changed +71
-69
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ keywords = [
1212]
1313dependencies = [
1414 " nexus-rpc==1.1.0" ,
15- " protobuf>=3.20,<6 " ,
15+ " protobuf>=3.20,<7.0.0 " ,
1616 " python-dateutil>=2.8.2,<3 ; python_version < '3.11'" ,
1717 " types-protobuf>=3.20" ,
1818 " typing-extensions>=4.2.0,<5" ,
Original file line number Diff line number Diff line change 3131 "3."
3232 ), f"Expected protobuf 3.x, got { protobuf_version } "
3333else :
34- assert protobuf_version .startswith ("4." ) or protobuf_version .startswith (
35- "5."
36- ), f"Expected protobuf 4.x/5.x, got { protobuf_version } "
34+ assert (
35+ protobuf_version .startswith ("4." )
36+ or protobuf_version .startswith ("5." )
37+ or protobuf_version .startswith ("6." )
38+ ), f"Expected protobuf 4.x/5.x/6.x, got { protobuf_version } "
3739
3840from temporalio .client import Client
3941from temporalio .testing import WorkflowEnvironment
You can’t perform that action at this time.
0 commit comments