Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions for django and DRF #20

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down