diff options
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 3954bf5..a1d14f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,15 @@ language: python python: - - "2.6" - "2.7" - - "3.2" - - "3.3" + - "3.4" - "pypy" script: - python setup.py test 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 + - pip install Django - pip install sqlalchemy --use-mirrors - if ! python --version 2>&1 | grep -q -i pypy ; then pip install Pillow --use-mirrors; fi |