Skip to content

Commit 5ae28fb

Browse files
committed
Added support for Django 4.1
1 parent baa2c82 commit 5ae28fb

File tree

6 files changed

+10
-2
lines changed

6 files changed

+10
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
python-version: ['3.7', '3.8', '3.9', '3.10']
15-
django-version: ['3.2', '4.0', 'main']
15+
django-version: ['3.2', '4.0', '4.1', 'main']
1616

1717
exclude:
1818
- python-version: '3.7'
1919
django-version: '4.0'
20+
- python-version: '3.7'
21+
django-version: '4.1'
2022
- python-version: '3.7'
2123
django-version: 'main'
2224
- python-version: '3.10'

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Unreleased
77
- Fixed typos in the docs
88
- Removed n+1 query from ``bulk_create_with_history`` utility (gh-975)
99
- Started using ``exists`` query instead of ``count`` in ``populate_history`` command (gh-982)
10+
- Added support for Django 4.1 (gh-1021)
1011

1112
3.1.1 (2022-04-23)
1213
------------------

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
3.2 3.7, 3.8, 3.9, 3.10
4545
4.0 3.8, 3.9, 3.10
46+
4.1 3.8, 3.9, 3.10
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
3.2 3.7, 3.8, 3.9
4545
4.0 3.8, 3.9, 3.10
46+
4.1 3.8, 3.9, 3.10
4647
========== =======================
4748

4849
Contribute

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"Framework :: Django",
3333
"Framework :: Django :: 3.2",
3434
"Framework :: Django :: 4.0",
35+
"Framework :: Django :: 4.1",
3536
"Programming Language :: Python",
3637
"Programming Language :: Python :: 3",
3738
"Programming Language :: Python :: 3.7",

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py{37,38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
4-
py{38,39,310}-dj{40,main}-{sqlite3,postgres,mysql,mariadb},
4+
py{38,39,310}-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
55
docs,
66
lint
77

@@ -16,6 +16,7 @@ python =
1616
DJANGO =
1717
3.2: dj32
1818
4.0: dj40
19+
4.1: dj41
1920
main: djmain
2021

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

0 commit comments

Comments
 (0)