Skip to content

Commit

Permalink
Declare Django 2.0 support and test against it
Browse files Browse the repository at this point in the history
  • Loading branch information
Suor committed Dec 30, 2017
1 parent 26b6374 commit a559e23
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ matrix:
env: DJANGO=1.7
- python: 3.6
env: DJANGO=1.11
- python: 3.6
env: DJANGO=2.0
install:
- pip install tox-travis
before_script:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',

'Environment :: Web Environment',
'Intended Audience :: Developers',
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist =
py27-dj{17,18,19,110,111},
py34-dj{18,19,110,111},
py35-dj{18,19,110,111},
py36-dj111,
py36-dj{111,20},
pypy-dj{18,19,110,111}


Expand All @@ -15,6 +15,7 @@ DJANGO =
1.9: dj19
1.10: dj110
1.11: dj111
2.0: dj20


[testenv]
Expand All @@ -25,6 +26,7 @@ deps =
dj19: Django>=1.9,<1.10
dj110: Django>=1.10,<1.11
dj111: Django>=1.11,<1.12
dj20: Django>=2.0,<2.1
py{27,33,34,35,36}: psycopg2
pypy: psycopg2cffi>=2.7.6
pytest>=2.3.4
Expand Down

0 comments on commit a559e23

Please sign in to comment.