Skip to content

Commit

Permalink
require protobuf >= 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wjo1212 committed Sep 5, 2018
1 parent 4e8d0b0 commit c460593
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements-py2.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requests
protobuf
protobuf>=3.4.0
six
futures
enum34
Expand Down
2 changes: 1 addition & 1 deletion requirements-py3.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requests
protobuf
protobuf>=3.4.0
six
enum34
python-dateutil
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
install_requires = ['requests', 'protobuf <= 3.4.0', 'six', 'enum34', 'futures', 'python-dateutil',
'elasticsearch>=6.0.0,<7.0.0']
elif sys.version_info[0] == 2:
install_requires = ['requests', 'protobuf', 'six', 'enum34', 'futures', 'python-dateutil',
install_requires = ['requests', 'protobuf>=3.4.0', 'six', 'enum34', 'futures', 'python-dateutil',
'elasticsearch>=6.0.0,<7.0.0',
'dateparser']
elif sys.version_info[0] == 3:
install_requires = ['requests', 'protobuf', 'six', 'enum34', 'python-dateutil', 'elasticsearch>=6.0.0,<7.0.0',
install_requires = ['requests', 'protobuf>=3.4.0', 'six', 'enum34', 'python-dateutil', 'elasticsearch>=6.0.0,<7.0.0',
'dateparser']


Expand Down

0 comments on commit c460593

Please sign in to comment.