summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2018-07-15 15:16:47 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2018-07-15 15:16:47 +0200
commitf440b6e3c6e9bbcd3e57f9c0d2f78aef36a249b1 (patch)
tree042eea731ea25bdd5dc3d61df232cf07cd95d134 /appveyor.yml
parent1b09b5fff78f705dfb42458726ff9789c26f6f21 (diff)
downloadpsutil-f440b6e3c6e9bbcd3e57f9c0d2f78aef36a249b1.tar.gz
appveyor: retire 3.5, add 3.7
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml25
1 files changed, 7 insertions, 18 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 436faadb..ee434903 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -3,27 +3,18 @@
os: Visual Studio 2015
environment:
-
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\.ci\\appveyor\\run_with_compiler.cmd"
-
matrix:
- # Pre-installed Python versions, which Appveyor may upgrade to
- # a later point release.
-
# 32 bits
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"
- - PYTHON: "C:\\Python34"
- PYTHON_VERSION: "3.4.x"
- PYTHON_ARCH: "32"
-
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "32"
@@ -32,16 +23,16 @@ environment:
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "32"
+ - PYTHON: "C:\\Python37"
+ PYTHON_VERSION: "3.7.x"
+ PYTHON_ARCH: "32"
+
# 64 bits
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"
- - PYTHON: "C:\\Python34-x64"
- PYTHON_VERSION: "3.4.x"
- PYTHON_ARCH: "64"
-
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "64"
@@ -50,11 +41,9 @@ environment:
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
- # Also build on a Python version not pre-installed by Appveyor.
- # See: https://github.com/ogrisel/python-appveyor-demo/issues/10
- # - PYTHON: "C:\\Python266"
- # PYTHON_VERSION: "2.6.6"
- # PYTHON_ARCH: "32"
+ - PYTHON: "C:\\Python37-x64"
+ PYTHON_VERSION: "3.7.x"
+ PYTHON_ARCH: "64"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"