@@ -17,20 +17,19 @@ environment:
1717
1818 matrix :
1919
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"
2827 PYTHON_VERSION : " 2.7"
2928 PYTHON_ARCH : " 64"
3029 CONDA_PY : " 27"
3130 CONDA_NPY : " 110"
3231
33- - PYTHON : " C:\\ Python35_64 "
32+ - CONDA_ROOT : " C:\\ Miniconda3.5_64 "
3433 PYTHON_VERSION : " 3.5"
3534 PYTHON_ARCH : " 64"
3635 CONDA_PY : " 35"
@@ -45,9 +44,6 @@ platform:
4544# all our python builds have to happen in tests_script...
4645build : false
4746
48- init :
49- - " ECHO %PYTHON_VERSION% %PYTHON%"
50-
5147install :
5248 # cancel older builds for the same PR
5349 - ps : if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
@@ -58,7 +54,7 @@ install:
5854 # this installs the appropriate Miniconda (Py2/Py3, 32/64 bit)
5955 # updates conda & installs: conda-build jinja2 anaconda-client
6056 - powershell .\ci\install.ps1
61- - SET PATH=%PYTHON %;%PYTHON %\Scripts;%PATH%
57+ - SET PATH=%CONDA_ROOT %;%CONDA_ROOT %\Scripts;%PATH%
6258 - echo "install"
6359 - cd
6460 - ls -ltr
@@ -70,21 +66,13 @@ install:
7066 # install our build environment
7167 - cmd : conda config --set show_channel_urls true --set always_yes true --set changeps1 false
7268 - 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
8069 - cmd : conda config --set ssl_verify false
8170
8271 # add the pandas channel *before* defaults to have defaults take priority
8372 - cmd : conda config --add channels conda-forge
8473 - cmd : conda config --add channels pandas
8574 - cmd : conda config --remove channels defaults
8675 - cmd : conda config --add channels defaults
87- - cmd : conda install anaconda-client
8876
8977 # this is now the downloaded conda...
9078 - cmd : conda info -a
@@ -98,6 +86,8 @@ install:
9886 - SET REQ=ci\requirements-%PYTHON_VERSION%-%PYTHON_ARCH%.run
9987 - cmd : echo "installing requirements from %REQ%"
10088 - cmd : conda install -n pandas -q --file=%REQ%
89+ - cmd : conda list -n pandas
90+ - cmd : echo "installing requirements from %REQ% - done"
10191 - ps : conda install -n pandas (conda build ci\appveyor.recipe -q --output)
10292
10393test_script :
0 commit comments