Skip to content

Commit 6d09c3e

Browse files
Merge pull request #1053 from joshuadavidthomas/py311
2 parents cca3b79 + f75cc46 commit 6d09c3e

File tree

7 files changed

+14
-4
lines changed

7 files changed

+14
-4
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ['3.7', '3.8', '3.9', '3.10']
14+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1515
django-version: ['3.2', '4.0', '4.1', 'main']
1616

1717
exclude:
@@ -22,6 +22,11 @@ jobs:
2222
- python-version: '3.7'
2323
django-version: 'main'
2424

25+
- python-version: '3.11'
26+
django-version: '3.2'
27+
- python-version: '3.11'
28+
django-version: '4.0'
29+
2530
services:
2631

2732
postgres:

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ Authors
7676
- Jonathan Zvesper (`zvesp <https://github.com/zvesp>`_)
7777
- Jordon Wing (`jordonwii <https://github.com/jordonwii`_)
7878
- Josh Fyne
79+
- Josh Thomas (`joshuadavidthomas <https://github.com/joshuadavidthomas>`_)
7980
- Keith Hackbarth
8081
- Kevin Foster
8182
- Klaas van Schelven

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Unreleased
1111
- Added support for Django 4.1 (gh-1021)
1212
- Added ``tracked_fields`` attribute to historical models (gh-1038)
1313
- Fixed ``KeyError`` when running ``clean_duplicate_history`` on models with ``excluded_fields`` (gh-1038)
14+
- Added support for Python 3.11 (gh-1053)
1415

1516
3.1.1 (2022-04-23)
1617
------------------

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +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
46+
4.1 3.8, 3.9, 3.10, 3.11
4747
========== ========================
4848

4949
Getting Help

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ This app supports the following combinations of Django and Python:
4141
========== =======================
4242
Django Python
4343
========== =======================
44-
3.2 3.7, 3.8, 3.9
44+
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
46+
4.1 3.8, 3.9, 3.10, 3.11
4747
========== =======================
4848

4949
Contribute

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"Programming Language :: Python :: 3.8",
4040
"Programming Language :: Python :: 3.9",
4141
"Programming Language :: Python :: 3.10",
42+
"Programming Language :: Python :: 3.11",
4243
"License :: OSI Approved :: BSD License",
4344
],
4445
python_requires=">=3.7",

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
envlist =
33
py{37,38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
44
py{38,39,310}-dj{40,41,main}-{sqlite3,postgres,mysql,mariadb},
5+
py311-dj{41,main}-{sqlite3,postgres,mysql,mariadb},
56
docs,
67
lint
78

@@ -11,6 +12,7 @@ python =
1112
3.8: py38, docs, lint
1213
3.9: py39
1314
3.10: py310
15+
3.11: py311
1416

1517
[gh-actions:env]
1618
DJANGO =

0 commit comments

Comments
 (0)