Skip to content

Commit bef93bd

Browse files
committed
BLD: pull wheel for numpy builds
1 parent 5475db3 commit bef93bd

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

ci/install_travis.sh

+6
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,12 @@ if [ -e ${REQ} ]; then
110110
time conda install -n pandas --file=${REQ} || exit 1
111111
fi
112112

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+
113119
source activate pandas
114120

115121
if [ "$BUILD_TEST" ]; then

ci/requirements-3.5_NUMPY_DEV.sh renamed to ci/requirements-3.5_NUMPY_DEV.build.sh

-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ echo "install numpy master wheel"
77
# remove the system installed numpy
88
pip uninstall numpy -y
99

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-
1510
# install numpy wheel from master
1611
pip install --pre --upgrade --no-index --timeout=60 --trusted-host travis-dev-wheels.scipy.org -f http://travis-dev-wheels.scipy.org/ numpy scipy
1712

0 commit comments

Comments
 (0)