Skip to content

Commit

Permalink
django 3.2 support (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblum committed Apr 10, 2021
1 parent d770e7f commit 24efd81
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ django-registration-redux changelog

Version 2.10, TBD
----------------
* Feature: Django 3.2 support.
`#412 <https://github.com/macropin/django-registration/pull/412>_`

Version 2.9, 1 January, 2021
----------------
Expand Down
4 changes: 2 additions & 2 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
Release notes
=============

The |version| release of |project| supports Python 3.5, 3.6, 3.7 and
Django 2.0, 2.1, 2.2, 3.0, and 3.1.
The |version| release of |project| supports Python 3.5, 3.6, 3.7, 3.8, 3.9 and
Django 2.0, 2.1, 2.2, 3.0, 3.1 and 3.2.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def run_tests(self):
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
Expand All @@ -52,6 +53,7 @@ def run_tests(self):
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
Expand Down
9 changes: 6 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
envlist =
py3{5,6,7}-django20,
py3{5,6,7}-django21,
py3{5,6,7}-django22,
py3{6,7,8}-django30,
py3{6,7,8}-django31,
py3{5,6,7,9}-django22,
py3{6,7,8,9}-django30,
py3{6,7,8,9}-django31,
py3{6,7,8,9}-django32,

[testenv]
commands =
Expand All @@ -21,10 +22,12 @@ deps =
django22: Django>=2.2a1,<3.0
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3

[travis]
python =
3.5: py35
3.6: py36
3.7: py37
3.8: py38
3.9: py39

0 comments on commit 24efd81

Please sign in to comment.