Skip to content

Commit

Permalink
Add testing for Django 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Oct 4, 2017
1 parent e01b9ad commit 28d424c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ env:
- TOXENV=py34-django-19
- TOXENV=py34-django-110
- TOXENV=py34-django-111
- TOXENV=py34-django-20
global:
- PIP_WHEEL_DIR=$HOME/.wheels
- PIP_FIND_LINKS=file://$HOME/.wheels
Expand All @@ -22,10 +23,14 @@ matrix:
env: TOXENV=py35-django-110
- python: 3.5
env: TOXENV=py35-django-111
- python: 3.5
env: TOXENV=py35-django-20
- python: 3.5
env: TOXENV=py35-django-master
- python: 3.6
env: TOXENV=py36-django-111
- python: 3.6
env: TOXENV=py36-django-20
- python: 3.6
env: TOXENV=py36-django-master
install:
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ X.Y (YYYY-MM-DD)

- Added testing for Django 1.11 (no code changes were required).

- Added support for Django 2.0.

- Dropped testing for Python 3.3 (now end-of-life) on Django 1.8.

2.0 (2017-01-07)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ def find_package_data(where='.', package='',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
args_are_paths = false
envlist =
{py27,py34}-django-{18,19,110,111}
py35-django-{18,19,110,111,master}
py36-django-{111,master}
py34-django-20
py35-django-{18,19,110,111,20,master}
py36-django-{111,20,master}

[testenv]
basepython =
Expand All @@ -20,5 +21,6 @@ deps =
django-19: Django>=1.9,<1.10
django-110: Django>=1.10a1,<1.11
django-111: Django>=1.11a1,<2.0
django-20: Django>=2.0a1,<2.1
django-master: https://github.com/django/django/archive/master.tar.gz
-r{toxinidir}/tests/requirements.txt

0 comments on commit 28d424c

Please sign in to comment.