Skip to content

Commit 3742a68

Browse files
committedMar 5, 2016
Move Wand to global pip
1 parent e4aa4a9 commit 3742a68

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ python:
55
before_install:
66
- sudo apt-get update -qq
77
- sudo apt-get install -qq imagemagick
8-
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then sudo apt-get install -qq python-numpy python-matplotlib python-pythonmagick python-wand; fi
9-
- if [[ $TRAVIS_PYTHON_VERSION == "3.2" ]]; then pip install --user matplotlib numpy Wand; fi
8+
- pip install --user Wand
9+
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then sudo apt-get install -qq python-numpy python-matplotlib python-pythonmagick; fi
10+
- if [[ $TRAVIS_PYTHON_VERSION == "3.2" ]]; then pip install --user matplotlib numpy; fi
1011
virtualenv:
1112
system_site_packages: true
1213
install:

0 commit comments

Comments
 (0)
Please sign in to comment.