From 044d57699c8d2fcb69dcea032c79bec4add09709 Mon Sep 17 00:00:00 2001 From: Mark Charney Date: Tue, 13 Jun 2017 13:07:35 -0400 Subject: [PATCH] appveyor python27 only for now too Change-Id: I4bf867dd366d0fcce1e7905a8de0279662429e39 --- ci.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci.py b/ci.py index c7907eb..a192b7d 100644 --- a/ci.py +++ b/ci.py @@ -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))