Skip to content

Commit

Permalink
Add support Django-3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shimizukawa committed Sep 21, 2021
1 parent d15682d commit 9c37519
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
max-parallel: 5
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
django-version: ['2.2', '3.0', '3.1']
django-version: ['2.2', '3.0', '3.1', '3.2']
include:
- django-version: 'main'
python-version: '3.8'
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Bug Fixes:

Features:

* TBD
* #?? Add Django 3.2 support.

2.0.1 (2021/03/07)
------------------
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Support versions
This product is tested with:

* Python-3.6, 3.7, 3.8, 3.9
* Django-2.2, 3.0, 3.1
* Django-2.2, 3.0, 3.1, 3.2

License
=======
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers =
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Intended Audience :: Developers
Environment :: Plugins
Topic :: Software Development :: Libraries :: Python Modules
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{36,37,38,39}-dj{22,30,31}
py{36,37,38,39}-dj{22,30,31,32}
py{38,39}-djmain
flake8
check
Expand All @@ -18,6 +18,7 @@ DJANGO =
2.2: dj22
3.0: dj30
3.1: dj31
3.2: dj32
main: djmain

[testenv]
Expand All @@ -30,6 +31,7 @@ deps =
dj22: Django>=2.2,<2.3
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
dj32: Django>=3.2,<3.3
djmain: https://github.com/django/django/archive/main.tar.gz
setenv =
DJANGO_SETTINGS_MODULE = settings
Expand Down

0 comments on commit 9c37519

Please sign in to comment.