From 7d9b8a521d1523a7d1d1babbce8720d3758d25bb Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 23 Sep 2018 13:45:28 +0200 Subject: [PATCH] .appveyor.yml: remove python 3.4, add 3.6 and 3.7, remove PATH_EXTRAS --- .appveyor.yml | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 383b1cd7..d16dcd4c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -15,14 +15,6 @@ environment: PYTHON_VERSION: "2.7.x" PYTHON_ARCH: "64" - - PYTHONDIR: "C:\\Python34" - PYTHON_VERSION: "3.4.x" - PYTHON_ARCH: "32" - - - PYTHONDIR: "C:\\Python34-x64" - PYTHON_VERSION: "3.4.x" - PYTHON_ARCH: "64" - - PYTHONDIR: "C:\\Python35" PYTHON_VERSION: "3.5.x" PYTHON_ARCH: "32" @@ -30,8 +22,22 @@ environment: - PYTHONDIR: "C:\\Python35-x64" PYTHON_VERSION: "3.5.x" PYTHON_ARCH: "64" - # add path required to run preprocessor step - PATH_EXTRAS: "c:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\bin" + + - PYTHONDIR: "C:\\Python36" + PYTHON_VERSION: "3.6.x" + PYTHON_ARCH: "32" + + - PYTHONDIR: "C:\\Python36-x64" + PYTHON_VERSION: "3.6.x" + PYTHON_ARCH: "64" + + - PYTHONDIR: "C:\\Python37" + PYTHON_VERSION: "3.7.x" + PYTHON_ARCH: "32" + + - PYTHONDIR: "C:\\Python37-x64" + PYTHON_VERSION: "3.7.x" + PYTHON_ARCH: "64" install: -- 2.11.0