From d89d80733facb1973f6481204bf834d9ced1851d Mon Sep 17 00:00:00 2001 From: David Halter Date: Sat, 12 Jan 2013 01:20:51 +0100 Subject: [PATCH] travis: install simplejson for python 2.5 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0e8c6d82..cdd88810 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,8 @@ python: - 2.6 - 2.7 - 3.2 -install: echo "No external requirements" +install: + - if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors simplejson; fi script: - cd test - ./test.sh