diff --git a/.travis.yml b/.travis.yml index fd728e3..33fef78 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,28 +1,23 @@ language: python python: - "2.7" - - "3.2" - "3.3" - "3.4" - "3.5" env: - - DJANGO_VERSION=1.8.14 - - DJANGO_VERSION=1.9.9 - - DJANGO_VERSION=1.10.1 + - DJANGO_VERSION=1.8.17 + - DJANGO_VERSION=1.9.12 + - DJANGO_VERSION=1.10.6 matrix: exclude: - - python: "3.2" - env: DJANGO_VERSION=1.9.9 - - python: "3.2" - env: DJANGO_VERSION=1.10.1 - python: "3.3" - env: DJANGO_VERSION=1.9.9 + env: DJANGO_VERSION=1.9.12 - python: "3.3" - env: DJANGO_VERSION=1.10.1 + env: DJANGO_VERSION=1.10.6 fast_finish: true install: - - pip install Django==$DJANGO_VERSION djangorestframework==3.4.6 + - pip install Django==$DJANGO_VERSION djangorestframework==3.5.4 - pip install coverage==3.7.1 - pip install coveralls script: diff --git a/setup.py b/setup.py index c58e7e8..773714a 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ license='BSD', packages=find_packages(exclude=['tests*']), install_requires=[ - 'djangorestframework>=3.2.3,<=3.4.6' + 'djangorestframework>=3.2.3,<=3.5.4' ], test_suite='runtests.run', tests_require=[