Skip to content

Commit 3cac2d5

Browse files
matthew-brettjreback
authored andcommitted
MAINT: test with manylinux numpy/scipy pre-release (pandas-dev#15702)
Numpy switching to daily manylinux wheels of trunk, instead of building wheels specific to Ubuntu 12.04 for every commit. Use these new wheels for numpy pre-release testing.
1 parent fe15466 commit 3cac2d5

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.travis.yml

-10
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,6 @@ matrix:
123123
- PANDAS_TESTING_MODE="deprecate"
124124
- CACHE_NAME="35_numpy_dev"
125125
- USE_CACHE=true
126-
addons:
127-
apt:
128-
packages:
129-
- libatlas-base-dev
130-
- gfortran
131126
# In allow_failures
132127
- python: 3.5
133128
env:
@@ -167,11 +162,6 @@ matrix:
167162
- PANDAS_TESTING_MODE="deprecate"
168163
- CACHE_NAME="35_numpy_dev"
169164
- USE_CACHE=true
170-
addons:
171-
apt:
172-
packages:
173-
- libatlas-base-dev
174-
- gfortran
175165
- python: 3.5
176166
env:
177167
- PYTHON_VERSION=3.5

ci/requirements-3.5_NUMPY_DEV.build.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ echo "install numpy master wheel"
88
pip uninstall numpy -y
99

1010
# install numpy wheel from master
11-
pip install --pre --upgrade --no-index --timeout=60 --trusted-host travis-dev-wheels.scipy.org -f http://travis-dev-wheels.scipy.org/ numpy
11+
PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com"
12+
pip install --pre --upgrade --timeout=60 -f $PRE_WHEELS numpy scipy
1213

1314
true

0 commit comments

Comments
 (0)