Skip to content

Commit 5d1870c

Browse files
committed
Add support for Python 3.11
1 parent 80f019f commit 5d1870c

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
12+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
1313

1414
steps:
1515
- name: Checkout the code

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Version numbers should follow https://semver.org/spec/v2.0.0.html
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- Added Python 3.11 support.
13+
1014
### Changed
1115

1216
- Remove upper boundary on supported Python version.
@@ -18,6 +22,7 @@ Version numbers should follow https://semver.org/spec/v2.0.0.html
1822

1923
- Fix broken CI by removing `tox-poetry-dev-dependencies`.
2024

25+
2126
## [2.1.0] - 2022-08-01
2227

2328
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ website outside of local development.
6060
## Support
6161

6262
Tests run on sensible combinations of:
63-
- Python (3.6-3.10)
63+
- Python (3.6-3.11)
6464
- Django (1.11-4.0)
6565

6666
If you're stuck on old version of Python or Django, you may consider installing

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.8",
3232
"Programming Language :: Python :: 3.9",
3333
"Programming Language :: Python :: 3.10",
34+
"Programming Language :: Python :: 3.11",
3435
"Topic :: Database",
3536
"Topic :: Documentation",
3637
"Topic :: Utilities",

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ envlist =
55
py38-django{22,30,31,32,40}
66
py39-django{22,30,31,32,40}
77
py310-django{32,40}
8+
py311-django{32,40}
89

910
isolated_build = True
1011

@@ -15,6 +16,7 @@ python =
1516
3.8: py38
1617
3.9: py39
1718
3.10: py310
19+
3.11: py311
1820

1921
[testenv]
2022
commands =

0 commit comments

Comments
 (0)