@@ -17,20 +17,19 @@ environment:
17
17
18
18
matrix :
19
19
20
- # disable python 3.4 ATM
21
- # - PYTHON: "C:\\Python34_64"
22
- # PYTHON_VERSION: "3.4"
23
- # PYTHON_ARCH: "64"
24
- # CONDA_PY: "34"
25
- # CONDA_NPY: "19"
26
-
27
- - PYTHON : " C:\\ Python27_64"
20
+ - CONDA_ROOT : " C:\\ Miniconda3.5_64"
21
+ PYTHON_VERSION : " 3.6"
22
+ PYTHON_ARCH : " 64"
23
+ CONDA_PY : " 36"
24
+ CONDA_NPY : " 111"
25
+
26
+ - CONDA_ROOT : " C:\\ Miniconda3.5_64"
28
27
PYTHON_VERSION : " 2.7"
29
28
PYTHON_ARCH : " 64"
30
29
CONDA_PY : " 27"
31
30
CONDA_NPY : " 110"
32
31
33
- - PYTHON : " C:\\ Python35_64 "
32
+ - CONDA_ROOT : " C:\\ Miniconda3.5_64 "
34
33
PYTHON_VERSION : " 3.5"
35
34
PYTHON_ARCH : " 64"
36
35
CONDA_PY : " 35"
@@ -45,9 +44,6 @@ platform:
45
44
# all our python builds have to happen in tests_script...
46
45
build : false
47
46
48
- init :
49
- - " ECHO %PYTHON_VERSION% %PYTHON%"
50
-
51
47
install :
52
48
# cancel older builds for the same PR
53
49
- ps : if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
@@ -58,7 +54,7 @@ install:
58
54
# this installs the appropriate Miniconda (Py2/Py3, 32/64 bit)
59
55
# updates conda & installs: conda-build jinja2 anaconda-client
60
56
- powershell .\ci\install.ps1
61
- - SET PATH=%PYTHON %;%PYTHON %\Scripts;%PATH%
57
+ - SET PATH=%CONDA_ROOT %;%CONDA_ROOT %\Scripts;%PATH%
62
58
- echo "install"
63
59
- cd
64
60
- ls -ltr
@@ -69,22 +65,15 @@ install:
69
65
70
66
# install our build environment
71
67
- cmd : conda config --set show_channel_urls true --set always_yes true --set changeps1 false
72
- - cmd : conda update -q conda
73
-
74
- # fix conda-build version
75
- # https://github.com/conda/conda-build/issues/1001
76
- # disabling 3.4 as windows complains upon compiling byte
77
- # code
78
-
79
- - cmd : conda install conda-build=1.21.7
68
+ # - cmd: conda update -q conda
69
+ - cmd : conda install conda=4.2.15
80
70
- cmd : conda config --set ssl_verify false
81
71
82
72
# add the pandas channel *before* defaults to have defaults take priority
83
73
- cmd : conda config --add channels conda-forge
84
74
- cmd : conda config --add channels pandas
85
75
- cmd : conda config --remove channels defaults
86
76
- cmd : conda config --add channels defaults
87
- - cmd : conda install anaconda-client
88
77
89
78
# this is now the downloaded conda...
90
79
- cmd : conda info -a
@@ -98,6 +87,8 @@ install:
98
87
- SET REQ=ci\requirements-%PYTHON_VERSION%-%PYTHON_ARCH%.run
99
88
- cmd : echo "installing requirements from %REQ%"
100
89
- cmd : conda install -n pandas -q --file=%REQ%
90
+ - cmd : conda list -n pandas
91
+ - cmd : echo "installing requirements from %REQ% - done"
101
92
- ps : conda install -n pandas (conda build ci\appveyor.recipe -q --output)
102
93
103
94
test_script :
0 commit comments