Skip to content

Commit bb622e1

Browse files
committed
more cleanup
1 parent 5ceadab commit bb622e1

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

appveyor.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ environment:
44
global:
55
PYTHONPATH: c:\testdir
66
PYTHONWARNINGS: 'ignore:::pip.pep425tags:'
7+
PYTHON_BLD: "C:\\Python35-x64"
8+
PYTHON_BLD_VERSION: "3.5"
9+
PYTHON_BLD_ARCH: "x64"
710

811
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
912
# /E:ON and /V:ON options are not enabled in the batch script intepreter
@@ -14,28 +17,20 @@ environment:
1417
matrix:
1518
# http://www.appveyor.com/docs/installed-software#python
1619
- PYTHON: "C:\\Python27"
17-
PYTHON_VERSION: "2.7"
1820
CONDA_PY: "27"
1921
- PYTHON: "C:\\Python27-x64"
20-
PYTHON_VERSION: "2.7"
2122
CONDA_PY: "27"
2223
- PYTHON: "C:\\Python33"
23-
PYTHON_VERSION: "3.3"
2424
CONDA_PY: "33"
2525
- PYTHON: "C:\\Python33-x64"
26-
PYTHON_VERSION: "3.3"
2726
CONDA_PY: "33"
2827
- PYTHON: "C:\\Python34"
29-
PYTHON_VERSION: "3.4"
3028
CONDA_PY: "34"
3129
- PYTHON: "C:\\Python34-x64"
32-
PYTHON_VERSION: "3.4"
3330
CONDA_PY: "34"
3431
- PYTHON: "C:\\Python35"
35-
PYTHON_VERSION: "3.5"
3632
CONDA_PY: "35"
3733
- PYTHON: "C:\\Python35-x64"
38-
PYTHON_VERSION: "3.5"
3934
CONDA_PY: "35"
4035

4136
install:

ci/install.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ function UpdateConda ($python_home) {
8484

8585

8686
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"
9090
}
9191

9292
main

0 commit comments

Comments
 (0)