Skip to content

Commit

Permalink
Add support for Django 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joehybird committed Jan 23, 2020
1 parent 1113683 commit 7a01ce3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
Expand All @@ -34,6 +35,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ envlist =
isort,
py27-1.11,
py34-{1.11,2.0},
py35-{1.11,2.0,2.1},
py36-{1.11,2.0,2.1,master},
py37-{1.11,2.0,2.1,master},
py38-{2.1,master},
py35-{1.11,2.0,2.1,2.2},
py36-{1.11,2.0,2.1,2.2,master},
py37-{1.11,2.0,2.1,2.2,master},
py38-{2.1,2.2,master},

[tox:travis]
2.7 = py27
Expand Down Expand Up @@ -37,6 +37,7 @@ deps =
1.11: Django>=1.11,<2.0
2.0: Django>=2.0,<2.1
2.1: Django>=2.1,<2.2
2.2: Django>=2.2,<3.0
master: https://github.com/django/django/archive/master.tar.gz

[testenv:flake8]
Expand Down

0 comments on commit 7a01ce3

Please sign in to comment.