summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGunnar Aastrand Grimnes <gromgull@gmail.com>2017-01-27 19:19:23 +0100
committerGunnar Aastrand Grimnes <gromgull@gmail.com>2017-01-27 19:19:23 +0100
commitd6a9ba155882c3baff6cffe82a06ce4db3052a7e (patch)
treecdd4bb0aefc19d011f08b8376a9aca027c467256 /.travis.yml
parent3d531734c85ccc0a51889744ca59b112a6cd01ae (diff)
downloadrdflib-d6a9ba155882c3baff6cffe82a06ce4db3052a7e.tar.gz
restrict travis to supported versions
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index a22cf0cb..08c68310 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,13 +10,10 @@ git:
depth: 3
python:
- # - 2.5
- - 2.6
- 2.7
- # - 3.2
- - 3.3
- 3.4
- 3.5
+ - 3.6
# - "pypy"
before_install:
@@ -26,8 +23,6 @@ before_install:
install:
- if [[ ${TRAVIS_PYTHON_VERSION%%.*} == '2' ]]; then pip install --default-timeout 60 -r requirements.py2.txt; fi
- if [[ ${TRAVIS_PYTHON_VERSION%%.*} == '3' ]]; then pip install --default-timeout 60 -r requirements.py3.txt; fi
- - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --default-timeout 60 ordereddict 'networkx<1.10' ; fi
- - if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then pip install --default-timeout 60 networkx ; fi
# isodate0.4.8 is problematic with Pypy, use fixed version
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install --upgrade "https://bitbucket.org/gjhiggins/isodate/downloads/isodate-0.4.8.tar.gz"; pip install --default-timeout 60 "elementtree"; fi
- pip install --default-timeout 60 coverage coveralls nose-timer && export HAS_COVERALLS=1