summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2017-02-11 11:30:55 +0100
committerStefan Behnel <stefan_ml@behnel.de>2017-02-11 11:30:55 +0100
commitcc2abe1f895f9f9340f48732c5377befe6f21e4e (patch)
tree044dab0f0673b55ccb6f2dd57da4b8c0015ce1dc
parentc9bcf1bed3acf367d6deb0c273cf22db0f18dab2 (diff)
downloadcython-0.25.x.tar.gz
include Python 3.6 in appveyor build0.25.x
-rw-r--r--appveyor.yml48
1 files changed, 28 insertions, 20 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 7ec5fefa9..428a95c84 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -10,43 +10,51 @@ environment:
matrix:
- PYTHON: "C:\\Python26"
- PYTHON_VERSION: "2.6.6"
+ PYTHON_VERSION: "2.6"
PYTHON_ARCH: "32"
+ - PYTHON: "C:\\Python26-x64"
+ PYTHON_VERSION: "2.6"
+ PYTHON_ARCH: "64"
+
- PYTHON: "C:\\Python27"
- PYTHON_VERSION: "2.7.9"
+ PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
+ - PYTHON: "C:\\Python27-x64"
+ PYTHON_VERSION: "2.7"
+ PYTHON_ARCH: "64"
+
- PYTHON: "C:\\Python33"
- PYTHON_VERSION: "3.3.5"
+ PYTHON_VERSION: "3.3"
PYTHON_ARCH: "32"
- - PYTHON: "C:\\Python34"
- PYTHON_VERSION: "3.4.3"
- PYTHON_ARCH: "32"
+ - PYTHON: "C:\\Python33-x64"
+ PYTHON_VERSION: "3.3"
+ PYTHON_ARCH: "64"
- - PYTHON: "C:\\Python35"
- PYTHON_VERSION: "3.5.0"
+ - PYTHON: "C:\\Python34"
+ PYTHON_VERSION: "3.4"
PYTHON_ARCH: "32"
- - PYTHON: "C:\\Python26-x64"
- PYTHON_VERSION: "2.6.6"
+ - PYTHON: "C:\\Python34-x64"
+ PYTHON_VERSION: "3.4"
PYTHON_ARCH: "64"
- - PYTHON: "C:\\Python27-x64"
- PYTHON_VERSION: "2.7.9"
- PYTHON_ARCH: "64"
+ - PYTHON: "C:\\Python35"
+ PYTHON_VERSION: "3.5"
+ PYTHON_ARCH: "32"
- - PYTHON: "C:\\Python33-x64"
- PYTHON_VERSION: "3.3.5"
+ - PYTHON: "C:\\Python35-x64"
+ PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
- - PYTHON: "C:\\Python34-x64"
- PYTHON_VERSION: "3.4.3"
- PYTHON_ARCH: "64"
+ - PYTHON: "C:\\Python36"
+ PYTHON_VERSION: "3.6"
+ PYTHON_ARCH: "32"
- - PYTHON: "C:\\Python35-x64"
- PYTHON_VERSION: "3.5.0"
+ - PYTHON: "C:\\Python36-x64"
+ PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
clone_depth: 5