appveyor python27 only for now too

Change-Id: I4bf867dd366d0fcce1e7905a8de0279662429e39
This commit is contained in:
Mark Charney
2017-06-13 13:07:35 -04:00
parent 372c5e2be3
commit 044d57699c

3
ci.py
View File

@@ -5,7 +5,8 @@ import subprocess
def get_python_cmds():
if platform.system() == 'Windows':
lst = []
pyvers = ['27','35']
#pyvers = ['27','35']
pyvers = ['27']
for pyver in pyvers:
pycmd = 'C:/python{}/python'.format(pyver)
lst.append((pyver,pycmd))