Skip to content

Commit d288869

Browse files
hramezanijezdez
authored andcommitted
Add Django 3.2 support.
1 parent d46fe6f commit d288869

File tree

6 files changed

+8
-2
lines changed

6 files changed

+8
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
python-version: ['3.6', '3.7', '3.8', '3.9']
14-
django-version: ['2.2', '3.1', 'main']
14+
django-version: ['2.2', '3.1', '3.2', 'main']
1515

1616
exclude:
1717
- python-version: '3.6'

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Unreleased
1212
- Queryset ``history.as_of`` speed improvements by calculating in the DB (gh-758)
1313
- Increase `black` and `isort` python version to 3.6
1414
- Remove Django 3.0 support
15+
- Add Django 3.2 support
1516

1617
2.12.0 (2020-10-14)
1718
-------------------

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ This app supports the following combinations of Django and Python:
4343
========== =======================
4444
2.2 3.6, 3.7, 3.8, 3.9
4545
3.1 3.6, 3.7, 3.8, 3.9
46+
3.2 3.6, 3.7, 3.8, 3.9
4647
========== =======================
4748

4849
Getting Help

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ This app supports the following combinations of Django and Python:
4343
========== =======================
4444
2.2 3.6, 3.7, 3.8, 3.9
4545
3.1 3.6, 3.7, 3.8, 3.9
46+
3.2 3.6, 3.7, 3.8, 3.9
4647
========== =======================
4748

4849
Contribute

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"Framework :: Django",
2626
"Framework :: Django :: 2.2",
2727
"Framework :: Django :: 3.1",
28+
"Framework :: Django :: 3.2",
2829
"Programming Language :: Python",
2930
"Programming Language :: Python :: 3.6",
3031
"Programming Language :: Python :: 3.7",

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39}-dj{22,31}-{sqlite3,postgres,mysql,mariadb},
3+
py{36,37,38,39}-dj{22,31,32}-{sqlite3,postgres,mysql,mariadb},
44
py{38,39}-djmain-{sqlite3,postgres,mysql,mariadb},
55
docs,
66
lint
@@ -16,6 +16,7 @@ python =
1616
DJANGO =
1717
2.2: dj22
1818
3.1: dj31
19+
3.2: dj32
1920
main: djmain
2021

2122
[flake8]
@@ -29,6 +30,7 @@ deps =
2930
-rrequirements/test.txt
3031
dj22: Django>=2.2,<2.3
3132
dj31: Django>=3.1,<3.2
33+
dj32: Django>=3.2,<3.3
3234
djmain: https://github.com/django/django/tarball/main
3335
postgres: -rrequirements/postgres.txt
3436
mysql: -rrequirements/mysql.txt

0 commit comments

Comments
 (0)