diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2014-09-03 23:50:50 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2014-09-03 23:50:50 +0200 |
commit | f81aba229a7492b11a331407f60fba1bd4d6522c (patch) | |
tree | a93c37bc6a02b9316bb043a4c97c8345572d84d8 | |
parent | 25bd44c30007d5babecefed651827431569ee1ee (diff) | |
download | factory-boy-f81aba229a7492b11a331407f60fba1bd4d6522c.tar factory-boy-f81aba229a7492b11a331407f60fba1bd4d6522c.tar.gz |
Fix travis.yml
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index eceada3..3954bf5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ script: install: - if [[ $TRAVIS_PYTHON_VERSION = 2.6 ]]; then pip install unittest2 --use-mirrors; fi - - if [[ $TRAVIS_PYTHON_VERSION = 2.6 ]]; then pip install Django<1.7 --use-mirrors; else pip install Django; fi + - if [[ $TRAVIS_PYTHON_VERSION = 2.6 ]]; then pip install "Django<1.7" --use-mirrors; else pip install Django; fi - pip install sqlalchemy --use-mirrors - if ! python --version 2>&1 | grep -q -i pypy ; then pip install Pillow --use-mirrors; fi |