File tree Expand file tree Collapse file tree 6 files changed +19
-1
lines changed Expand file tree Collapse file tree 6 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ matrix:
10
10
env : TOXENV=py36-django-30
11
11
- python : 3.6
12
12
env : TOXENV=py36-django-31
13
+ - python : 3.6
14
+ env : TOXENV=py36-django-32
13
15
- python : 3.6
14
16
env : TOXENV=py36-django-master
15
17
- python : 3.7
@@ -18,6 +20,8 @@ matrix:
18
20
env : TOXENV=py37-django-30
19
21
- python : 3.7
20
22
env : TOXENV=py37-django-31
23
+ - python : 3.7
24
+ env : TOXENV=py37-django-32
21
25
- python : 3.7
22
26
env : TOXENV=py37-django-master
23
27
- python : 3.8
@@ -26,6 +30,8 @@ matrix:
26
30
env : TOXENV=py38-django-30
27
31
- python : 3.8
28
32
env : TOXENV=py38-django-31
33
+ - python : 3.8
34
+ env : TOXENV=py38-django-32
29
35
- python : 3.8
30
36
env : TOXENV=py38-django-master
31
37
- python : 3.9
@@ -34,6 +40,8 @@ matrix:
34
40
env : TOXENV=py39-django-30
35
41
- python : 3.9
36
42
env : TOXENV=py39-django-31
43
+ - python : 3.9
44
+ env : TOXENV=py39-django-32
37
45
- python : 3.9
38
46
env : TOXENV=py39-django-master
39
47
allow_failures :
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Unreleased
16
16
(more about that in the documentation) with an appropriate
17
17
``object_pk `` field.
18
18
* Confirmed support for Python 3.9.
19
-
19
+ * Added support for Django 3.2.
20
20
21
21
2.0.0 (2020-12-20)
22
22
------------------
Original file line number Diff line number Diff line change
1
+ from django .apps import AppConfig
2
+
3
+
4
+ class DjangoCommentsAdminConfig (AppConfig ):
5
+ default_auto_field = 'django.db.models.AutoField'
6
+ name = 'django_comments'
Original file line number Diff line number Diff line change 26
26
'Framework :: Django :: 2.2' ,
27
27
'Framework :: Django :: 3.0' ,
28
28
'Framework :: Django :: 3.1' ,
29
+ 'Framework :: Django :: 3.2' ,
29
30
'Intended Audience :: Developers' ,
30
31
'Natural Language :: English' ,
31
32
'License :: OSI Approved :: BSD License' ,
Original file line number Diff line number Diff line change 15
15
from django .conf import settings
16
16
settings .configure (
17
17
DATABASES = {'default' : {'ENGINE' : 'django.db.backends.sqlite3' }},
18
+ DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' ,
18
19
INSTALLED_APPS = [
19
20
"django.contrib.auth" ,
20
21
"django.contrib.contenttypes" ,
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ envlist =
3
3
py3{5,6,7,8,9}-django22
4
4
py3{6,7,8,9}-django30
5
5
py3{6,7,8,9}-django31
6
+ py3{6,7,8,9}-django32
6
7
py3{6,7,8,9}-master
7
8
8
9
[testenv]
19
20
django-22: Django>=2.2a1,<3.0
20
21
django-30: Django>=3.0a1,<3.1
21
22
django-31: Django>=3.1a1,<3.2
23
+ django-32: Django>=3.2a1,<4.0
22
24
django-master: https://github.com/django/django/archive/master.tar.gz
You can’t perform that action at this time.
0 commit comments