We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f4a471 commit 052dc73Copy full SHA for 052dc73
1 file changed
setup.py
@@ -7,14 +7,14 @@
7
from version import get_version
8
from commands import setup_timeseries, build_messages
9
10
-install_requires = ['six >= 1.8.0', 'basho_erlastic >= 2.1.0']
11
-requires = ['six(>=1.8.0)', 'basho_erlastic(>= 2.1.0)']
+install_requires = ['six >= 1.8.0', 'basho_erlastic >= 2.1.1']
+requires = ['six(>=1.8.0)', 'basho_erlastic(>= 2.1.1)']
12
13
-if sys.version_info[0:3] <= (2, 7, 9):
+if sys.version_info[:3] <= (2, 7, 9):
14
install_requires.append("pyOpenSSL >= 0.14")
15
requires.append("pyOpenSSL(>=0.14)")
16
17
-if sys.version_info[0:3] <= (3, 0, 0):
+if sys.version_info[:3] <= (3, 0, 0):
18
install_requires.append('protobuf >=2.4.1, <2.7.0')
19
requires.append('protobuf(>=2.4.1, <2.7.0)')
20
else:
0 commit comments