Skip to content

Commit

Permalink
Merge pull request chainer#7083 from niboshi/protobuf-no-pre
Browse files Browse the repository at this point in the history
Exclude protobuf 3.8.0rc1 from dependencies
  • Loading branch information
hvy committed May 8, 2019
1 parent d3c55d9 commit b7c90b2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
'typing_extensions',
'filelock',
'numpy>=1.9.0',
'protobuf>=3.0.0',
# protobuf 3.8.0rc1 causes CI errors.
# TODO(niboshi): Probably we should always use pip in CIs for
# installing chainer. It avoids pre-release dependencies by default.
# See also: https://github.com/pypa/setuptools/issues/855
'protobuf>=3.0.0,<3.8.0rc1',
'six>=1.9.0',
],
'stylecheck': [
Expand Down

0 comments on commit b7c90b2

Please sign in to comment.