From 7a59f21492c60a29b03b545ed957b04577d71352 Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Fri, 12 Oct 2018 09:27:10 +0200 Subject: [PATCH] appveyor: also test Python 3.4, 3.5, 3.6 and 3.7 (64 bit) --- appveyor.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 478dc3c..c215303 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,9 +8,26 @@ environment: matrix: # https://www.appveyor.com/docs/windows-images-software/#python - PYTHON: "C:\\Python27" - PYTHON_VERSION: "2.7.x" # currently 2.7.15 + PYTHON_VERSION: "2.7.x" PYTHON_ARCH: "32" + - PYTHON: "C:\\Python34-x64" + PYTHON_VERSION: "3.4.x" + PYTHON_ARCH: "64" + + - PYTHON: "C:\\Python35-x64" + PYTHON_VERSION: "3.5.x" + PYTHON_ARCH: "64" + + - PYTHON: "C:\\Python36-x64" + PYTHON_VERSION: "3.6.x" + PYTHON_ARCH: "64" + + - PYTHON: "C:\\Python37-x64" + PYTHON_VERSION: "3.7.x" + PYTHON_ARCH: "64" + + install: # If there is a newer build queued for the same PR, cancel this one. # The AppVeyor 'rollout builds' option is supposed to serve the same