summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessio Sergi <al3hex@gmail.com>2018-02-16 15:56:35 +0100
committerAlessio Sergi <al3hex@gmail.com>2018-02-16 15:56:35 +0100
commitca1e27ab2e3443c51e69b8c21d5781fdb303c9db (patch)
tree2a6d4254dd632d9a6ba25489256bce57f4de6fc2
parent8ecea8a6ea500b7759c0fcc54d6552401bab19da (diff)
Add AppVeyor testing for Python 3.6
-rw-r--r--.ci/appveyor/download_exes.py2
-rw-r--r--appveyor.yml11
2 files changed, 12 insertions, 1 deletions
diff --git a/.ci/appveyor/download_exes.py b/.ci/appveyor/download_exes.py
index cbea08e7..aa679d64 100644
--- a/.ci/appveyor/download_exes.py
+++ b/.ci/appveyor/download_exes.py
@@ -25,7 +25,7 @@ from concurrent.futures import ThreadPoolExecutor
BASE_URL = 'https://ci.appveyor.com/api'
-PY_VERSIONS = ['2.7', '3.4', '3.5']
+PY_VERSIONS = ['2.7', '3.4', '3.5', '3.6']
def term_supports_colors(file=sys.stdout):
diff --git a/appveyor.yml b/appveyor.yml
index 32a16d2d..e01646fe 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -16,6 +16,10 @@ environment:
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "32"
+ - PYTHON: "C:\\Python36"
+ PYTHON_VERSION: "3.6.x"
+ PYTHON_ARCH: "32"
+
# 64 bits
- PYTHON: "C:\\Python27-x64"
@@ -29,6 +33,13 @@ environment:
VS_VER: "2015"
INSTANCENAME: "SQL2012SP1"
+ - PYTHON: "C:\\Python36-x64"
+ PYTHON_VERSION: "3.6.x"
+ PYTHON_ARCH: "64"
+ ARCH: x86_64
+ VS_VER: "2015"
+ INSTANCENAME: "SQL2012SP1"
+
# Also build on a Python version not pre-installed by Appveyor.
# See: https://github.com/ogrisel/python-appveyor-demo/issues/10