Skip to content

Commit

Permalink
Support and test against Python 3.9 and Django 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Suor committed Feb 3, 2021
1 parent 1fd5195 commit d9ef8c9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Framework :: Django',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',

'Environment :: Web Environment',
'Intended Audience :: Developers',
Expand Down
11 changes: 7 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,19 @@ minversion = 2.7
envlist =
lint,
py35-dj{21,22},
py36-dj{21,22,30},
py37-dj{21,22,30,master},
py38-dj{21,22,30,master},
pypy3-dj{21,22,30}
py36-dj{21,22,30,31},
py37-dj{21,22,30,31,master},
py38-dj{21,22,30,31,master},
py39-dj{22,30,31,master},
pypy3-dj{21,22,30,31}


[travis:env]
DJANGO =
2.1: dj21
2.2: dj22
3.0: dj30
3.1: dj31
master: djmaster


Expand All @@ -27,6 +29,7 @@ deps =
dj21: Django>=2.1,<2.2
dj22: Django>=2.2,<2.3
dj30: Django>=3.0a1,<3.1
dj31: Django>=3.1,<3.2
djmaster: git+https://github.com/django/django
mysqlclient
py{35,36,37,38}: psycopg2
Expand Down

0 comments on commit d9ef8c9

Please sign in to comment.