From 61fb531cfc457728840f8b2beb0a90295e741c0c Mon Sep 17 00:00:00 2001 From: Ilya Kulakov Date: Tue, 13 Nov 2018 13:10:01 -0800 Subject: [PATCH] Do not run tests for Python 2.6 and 2.7 on Windows. --- .appveyor.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 3c33adb..05e274e 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,9 +1,11 @@ environment: matrix: - - PYTHON: "C:\\Python26" - - PYTHON: "C:\\Python26-x64" - - PYTHON: "C:\\Python27" - - PYTHON: "C:\\Python27-x64" +# Python 2.6 builds do not work because bundled OpenSSL does not support TLS. +# - PYTHON: "C:\\Python26" +# - PYTHON: "C:\\Python26-x64" +# Python 2.x builds do not work, because readlink for Windows is not available before Python 3.3 +# - PYTHON: "C:\\Python27" +# - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python34" - PYTHON: "C:\\Python34-x64" - PYTHON: "C:\\Python35"