Skip to content

Commit 0d3d452

Browse files
committed
BF: fix travis builds
The virtualenv command was always using Python 2.7; get virtualenv to use virtualenv python version; debug print check.
1 parent 8fc4d19 commit 0d3d452

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ matrix:
2727
env:
2828
- DEPENDS="numpy==1.5.1 pydicom==0.9.7"
2929
before_install:
30-
- virtualenv venv
30+
- virtualenv --python=python venv
3131
- source venv/bin/activate
32+
- python --version # just to check
3233
- pip install nose # always
3334
- pip install --no-index -f http://travis-wheels.scikit-image.org $DEPENDS
3435
# pydicom <= 0.9.8 doesn't install on python 3

0 commit comments

Comments
 (0)