diff --git a/ci.py b/ci.py index ff282c1..c345f28 100644 --- a/ci.py +++ b/ci.py @@ -5,7 +5,9 @@ import subprocess def get_python_cmds(): if platform.system() == 'Linux': lst = [] - for pyver in ['2.7','3.5.2']: + #pyvers = ['2.7','3.5.2']: + pyvers = ['2.7']: + for pyver in pyvers: pycmd = '/opt/python/{}/bin/python'.format(pyver) lst.append((pyver,pycmd)) return lst