Skip to content

Commit 7416e22

Browse files
snio89auvipy
authored andcommitted
enable Django 3.2 CI and add default_auto_field
1 parent 079b2f0 commit 7416e22

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ env:
1919
- DJANGO=2.2
2020
- DJANGO=3.0
2121
- DJANGO=3.1
22+
- DJANGO=3.2
2223
os:
2324
- linux
2425
matrix:

django_celery_beat/apps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ class BeatConfig(AppConfig):
1111
name = 'django_celery_beat'
1212
label = 'django_celery_beat'
1313
verbose_name = _('Periodic Tasks')
14+
default_auto_field = 'django.db.models.AutoField'

requirements/test-django32.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
django>=3.2,<3.3

tox.ini

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
22
envlist =
3-
py36-django{22,30,31}
4-
py37-django{22,30,31}
5-
py38-django{22,30,31}
6-
pypy3-django{22,30,31}
3+
py36-django{22,30,31,32}
4+
py37-django{22,30,31,32}
5+
py38-django{22,30,31,32}
6+
pypy3-django{22,30,31,32}
77
flake8
88
flakeplus
99
apicheck
@@ -16,6 +16,7 @@ DJANGO =
1616
2.2: django22
1717
3.0: django30
1818
3.1: django31
19+
3.2: django32
1920

2021
[testenv]
2122
deps=
@@ -28,6 +29,7 @@ deps=
2829
django22: -r{toxinidir}/requirements/test-django22.txt
2930
django30: -r{toxinidir}/requirements/test-django30.txt
3031
django31: -r{toxinidir}/requirements/test-django31.txt
32+
django32: -r{toxinidir}/requirements/test-django32.txt
3133

3234
linkcheck,apicheck: -r{toxinidir}/requirements/docs.txt
3335
flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt

0 commit comments

Comments
 (0)