Skip to content

Commit 3bfaf52

Browse files
committed
Fixed minor dependeny error
1 parent fd5840a commit 3bfaf52

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

riemann_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""A Python Riemann client and command line tool"""
22

3-
__version__ = '5.0.0'
3+
__version__ = '5.0.1'
44
__author__ = 'Sam Clements <sam.clements@datasift.com>'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setuptools.setup(
66
name='riemann-client',
7-
version='5.0.0',
7+
version='5.0.1',
88

99
author="Sam Clements",
1010
author_email="sam.clements@datasift.com",
@@ -17,8 +17,8 @@
1717
packages=setuptools.find_packages(),
1818

1919
install_requires=[
20-
'click>=3.1,>4.0',
21-
'protobuf>=2.3.0',
20+
'click>=3.1,<4.0',
21+
'protobuf>=2.3.0,<3.0.0',
2222
],
2323

2424
extras_require={

0 commit comments

Comments
 (0)