Skip to content

Commit 27b6607

Browse files
Merge pull request #509 from matthew-brett/use-pre
MAINT: use new pre-release Rackspace container Look in new container for pre-release builds of numpy, scipy, matplotlib. Don't install apt packages, the wheels provide these libraries.
2 parents f09dc0b + 15286cb commit 27b6607

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,15 @@ sudo: false
1212
cache:
1313
directories:
1414
- $HOME/.cache/pip
15-
addons:
16-
apt:
17-
packages:
18-
- libhdf5-serial-dev
19-
# For numpy --pre wheels
20-
- libatlas-base-dev
2115
env:
2216
global:
2317
- DEPENDS="six numpy scipy matplotlib h5py pillow"
2418
- PYDICOM=1
2519
- INSTALL_TYPE="setup"
2620
- EXTRA_WHEELS="https://5cf40426d9f06eb7461d-6fe47d9331aba7cd62fc36c7196769e4.ssl.cf2.rackcdn.com"
21+
- PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com"
2722
- EXTRA_PIP_FLAGS="--find-links=$EXTRA_WHEELS"
23+
- PRE_PIP_FLAGS="--pre $EXTRA_PIP_FLAGS --find-links $PRE_WHEELS"
2824
python:
2925
- 3.4
3026
- 3.5
@@ -58,10 +54,14 @@ matrix:
5854
- python: 2.7
5955
env:
6056
- PYDICOM="v1.0"
61-
# test against pre-release builds
57+
# test 2.7 against pre-release builds of everything
6258
- python: 2.7
6359
env:
64-
- EXTRA_PIP_FLAGS="--pre --find-links=$EXTRA_WHEELS"
60+
- EXTRA_PIP_FLAGS="$PRE_PIP_FLAGS"
61+
# test 3.5 against pre-release builds of everything
62+
- python: 3.5
63+
env:
64+
- EXTRA_PIP_FLAGS="$PRE_PIP_FLAGS"
6565
# Documentation doctests
6666
- python: 2.7
6767
env:

0 commit comments

Comments
 (0)