File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ environment:
4
4
global :
5
5
PYTHONPATH : c:\testdir
6
6
PYTHONWARNINGS : ' ignore:::pip.pep425tags:'
7
+ PYTHON_BLD : " C:\\ Python35-x64"
8
+ PYTHON_BLD_VERSION : " 3.5"
9
+ PYTHON_BLD_ARCH : " x64"
7
10
8
11
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
9
12
# /E:ON and /V:ON options are not enabled in the batch script intepreter
@@ -14,28 +17,20 @@ environment:
14
17
matrix :
15
18
# http://www.appveyor.com/docs/installed-software#python
16
19
- PYTHON : " C:\\ Python27"
17
- PYTHON_VERSION : " 2.7"
18
20
CONDA_PY : " 27"
19
21
- PYTHON : " C:\\ Python27-x64"
20
- PYTHON_VERSION : " 2.7"
21
22
CONDA_PY : " 27"
22
23
- PYTHON : " C:\\ Python33"
23
- PYTHON_VERSION : " 3.3"
24
24
CONDA_PY : " 33"
25
25
- PYTHON : " C:\\ Python33-x64"
26
- PYTHON_VERSION : " 3.3"
27
26
CONDA_PY : " 33"
28
27
- PYTHON : " C:\\ Python34"
29
- PYTHON_VERSION : " 3.4"
30
28
CONDA_PY : " 34"
31
29
- PYTHON : " C:\\ Python34-x64"
32
- PYTHON_VERSION : " 3.4"
33
30
CONDA_PY : " 34"
34
31
- PYTHON : " C:\\ Python35"
35
- PYTHON_VERSION : " 3.5"
36
32
CONDA_PY : " 35"
37
33
- PYTHON : " C:\\ Python35-x64"
38
- PYTHON_VERSION : " 3.5"
39
34
CONDA_PY : " 35"
40
35
41
36
install :
Original file line number Diff line number Diff line change @@ -84,9 +84,9 @@ function UpdateConda ($python_home) {
84
84
85
85
86
86
function main () {
87
- InstallMiniconda $env: PYTHON_VERSION $env: PYTHON_ARCH $env: PYTHON
88
- UpdateConda $env: PYTHON
89
- InstallCondaPackages $env: PYTHON " conda-build jinja2 anaconda-client"
87
+ InstallMiniconda $env: PYTHON_BLD_VERSION $env: PYTHON_BLD_ARCH $env: PYTHON_BLD
88
+ UpdateConda $env: PYTHON_BLD
89
+ InstallCondaPackages $env: PYTHON_BLD " conda-build jinja2 anaconda-client"
90
90
}
91
91
92
92
main
You can’t perform that action at this time.
0 commit comments