File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O mini
7171bash miniconda.sh -b -p $HOME /miniconda || exit 1
7272
7373conda config --set always_yes yes --set changeps1 no || exit 1
74- conda update -q conda || exit 1
74+ # conda update -q conda || exit 1
7575conda config --add channels conda-forge || exit 1
7676conda config --add channels http://conda.binstar.org/pandas || exit 1
7777conda config --set ssl_verify false || exit 1
@@ -84,7 +84,9 @@ REQ="ci/requirements-${TRAVIS_PYTHON_VERSION}${JOB_TAG}.build"
8484time conda create -n pandas python=$TRAVIS_PYTHON_VERSION nose || exit 1
8585time conda install -n pandas --file=${REQ} || exit 1
8686
87+ echo " activating pandas env: start"
8788source activate pandas
89+ echo " activating pandas env: done"
8890
8991# set the compiler cache to work
9092if [ " $IRON_TOKEN " ]; then
@@ -106,6 +108,7 @@ if [ "$BUILD_TEST" ]; then
106108else
107109
108110 # build but don't install
111+ echo " starting build"
109112 time python setup.py build_ext --inplace || exit 1
110113
111114 # we may have run installations
You can’t perform that action at this time.
0 commit comments