Skip to content

Commit 052dc73

Browse files
author
Luke Bakken
committed
Update basho-erlastic dependency
1 parent 9f4a471 commit 052dc73

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
from version import get_version
88
from commands import setup_timeseries, build_messages
99

10-
install_requires = ['six >= 1.8.0', 'basho_erlastic >= 2.1.0']
11-
requires = ['six(>=1.8.0)', 'basho_erlastic(>= 2.1.0)']
10+
install_requires = ['six >= 1.8.0', 'basho_erlastic >= 2.1.1']
11+
requires = ['six(>=1.8.0)', 'basho_erlastic(>= 2.1.1)']
1212

13-
if sys.version_info[0:3] <= (2, 7, 9):
13+
if sys.version_info[:3] <= (2, 7, 9):
1414
install_requires.append("pyOpenSSL >= 0.14")
1515
requires.append("pyOpenSSL(>=0.14)")
1616

17-
if sys.version_info[0:3] <= (3, 0, 0):
17+
if sys.version_info[:3] <= (3, 0, 0):
1818
install_requires.append('protobuf >=2.4.1, <2.7.0')
1919
requires.append('protobuf(>=2.4.1, <2.7.0)')
2020
else:

0 commit comments

Comments
 (0)