Skip to content

Commit

Permalink
Added support for Django 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani committed Aug 3, 2022
1 parent 426a542 commit ba6aa44
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
django-version: ['3.2', '4.0', 'main']
django-version: ['3.2', '4.0', '4.1', 'main']

exclude:
- python-version: '3.7'
django-version: '4.0'
- python-version: '3.7'
django-version: '4.1'
- python-version: '3.7'
django-version: 'main'
- python-version: '3.10'
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Unreleased
- Fixed typos in the docs
- Removed n+1 query from ``bulk_create_with_history`` utility (gh-975)
- Started using ``exists`` query instead of ``count`` in ``populate_history`` command (gh-982)
- Added support for Django 4.1 (gh-1021)

3.1.1 (2022-04-23)
------------------
Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ This app supports the following combinations of Django and Python:
========== ========================
3.2 3.7, 3.8, 3.9, 3.10
4.0 3.8, 3.9, 3.10
4.1 3.8, 3.9, 3.10
========== ========================

Getting Help
Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ This app supports the following combinations of Django and Python:
========== =======================
3.2 3.7, 3.8, 3.9
4.0 3.8, 3.9, 3.10
4.1 3.8, 3.9, 3.10
========== =======================

Contribute
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
py{37,38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
py{38,39,310}-dj{40,main}-{sqlite3,postgres,mysql,mariadb},
py{38,39,310}-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
docs,
lint

Expand All @@ -16,6 +16,7 @@ python =
DJANGO =
3.2: dj32
4.0: dj40
4.1: dj41
main: djmain

[flake8]
Expand All @@ -29,6 +30,7 @@ deps =
-rrequirements/test.txt
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
djmain: https://github.com/django/django/tarball/main
postgres: -rrequirements/postgres.txt
mysql: -rrequirements/mysql.txt
Expand Down

0 comments on commit ba6aa44

Please sign in to comment.