File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,12 @@ if [ -e ${REQ} ]; then
110
110
time conda install -n pandas --file=${REQ} || exit 1
111
111
fi
112
112
113
+ # may have addtl installation instructions for this build
114
+ REQ=" ci/requirements-${PYTHON_VERSION}${JOB_TAG} .build.sh"
115
+ if [ -e ${REQ} ]; then
116
+ time bash $REQ || exit 1
117
+ fi
118
+
113
119
source activate pandas
114
120
115
121
if [ " $BUILD_TEST " ]; then
Original file line number Diff line number Diff line change @@ -7,11 +7,6 @@ echo "install numpy master wheel"
7
7
# remove the system installed numpy
8
8
pip uninstall numpy -y
9
9
10
- # we need these for numpy
11
-
12
- # these wheels don't play nice with the conda libgfortran / openblas
13
- # time conda install -n pandas libgfortran openblas || exit 1
14
-
15
10
# install numpy wheel from master
16
11
pip install --pre --upgrade --no-index --timeout=60 --trusted-host travis-dev-wheels.scipy.org -f http://travis-dev-wheels.scipy.org/ numpy scipy
17
12
You can’t perform that action at this time.
0 commit comments