We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 944b27e commit 363bad1Copy full SHA for 363bad1
setup.py
@@ -1,5 +1,5 @@
1
import os
2
-
+import sys
3
4
from setuptools import setup
5
from setuptools import find_packages
@@ -19,6 +19,8 @@
19
'pyOpenSSL',
20
'six',
21
]
22
+if sys.version_info[:2] == (2, 7):
23
+ REQUIREMENTS.append('grpcio >= 0.13.0')
24
25
setup(
26
name='gcloud',
tox.ini
@@ -21,6 +21,12 @@ covercmd =
--cover-branches \
--nocapture
+[testenv:py27]
+basepython =
+ python2.7
27
+setenv =
28
+ PYTHONPATH =
29
+
30
[testenv:cover]
31
basepython =
32
python2.7
0 commit comments