Skip to content

Commit 0e3ba4e

Browse files
committed
Merge pull request #112 from asottile/appveyor_35
Use python3.5 in appveyor
2 parents 9d55fe2 + cc93aff commit 0e3ba4e

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

appveyor.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
11
version: "{build}"
22
environment:
3-
global:
4-
VS90COMNTOOLS: "%VS110COMNTOOLS%"
5-
VS100COMNTOOLS: "%VS110COMNTOOLS%"
63
matrix:
74
- PYTHON: "C:\\Python27"
85
PYTHON_ARCH: 32
96
- PYTHON: "C:\\Python27-x64"
107
PYTHON_ARCH: 64
11-
- PYTHON: "C:\\Python33"
12-
PYTHON_ARCH: 32
13-
- PYTHON: "C:\\Python33-x64"
14-
PYTHON_ARCH: 64
158
- PYTHON: "C:\\Python34"
169
PYTHON_ARCH: 32
1710
- PYTHON: "C:\\Python34-x64"
1811
PYTHON_ARCH: 32
12+
- PYTHON: "C:\\Python35"
13+
PYTHON_ARCH: 32
14+
- PYTHON: "C:\\Python35-x64"
15+
PYTHON_ARCH: 64
1916
matrix:
2017
fast_finish: true
2118
init:
22-
- ps: "$env:Path = \"C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\VC\\bin;\" + $env:Path"
2319
- "ECHO %PATH%"
2420
- "ECHO %PYTHON%"
2521
- ps: "ls C:/Python*"
@@ -30,8 +26,7 @@ install:
3026
- "%PYTHON%\\Scripts\\pip.exe install -e ."
3127
build: false
3228
test_script:
33-
- "dir \"C:\\Program Files (x86)\""
34-
- "%PYTHON%\\python.exe -c \"import os,pprint;pprint.pprint(os.environ)\""
29+
- "%PYTHON%\\python.exe -c \"import os,pprint;pprint.pprint(sorted(os.environ.items()))\""
3530
- "%PYTHON%\\python.exe setup.py test"
3631
after_test:
3732
- "%PYTHON%\\python.exe setup.py bdist_wheel"

0 commit comments

Comments
 (0)