Skip to content

Commit

Permalink
Allow for larger version of protobuf (#680)
Browse files Browse the repository at this point in the history
onnx (1.13.0) depends on protobuf (>=3.20.2,<4)
tensorboardx (2.5.1) depends on protobuf (>=3.8.0,<=3.20.1)
==> tensorboardx not compatible with tensorboardx.
Can we just allow for a larger version of protobuf please?

(Related to #678)
  • Loading branch information
louisoutin committed Jan 23, 2023
1 parent fbdc0ac commit a402e19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def run(self):

requirements = [
'numpy',
'protobuf>=3.8.0,<=3.20.3',
'protobuf>=3.8.0,<4',
]


Expand Down

0 comments on commit a402e19

Please sign in to comment.