Skip to content

Commit f60820a

Browse files
committed
Add support for Python 3.12
1 parent b0d361f commit f60820a

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python: [ '3.9', '3.10', '3.11' ]
10+
python: [ '3.9', '3.10', '3.11', '3.12' ]
1111
name: python${{ matrix.python }}, django-${{ matrix.django }}
1212
steps:
1313
- uses: actions/checkout@v3

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ v5.0.0
66

77
- Fixed documentation not rendering on readthedocs.
88
- Drop support for Python 3.8.
9-
- Add support for Python 3.11.
9+
- Add support for Python 3.11 and 3.12.
1010
- Add support for Django 4.1 and 4.2.
1111

1212
v4.0.0

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.9",
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
2829
"Topic :: Internet :: WWW/HTTP",
2930
"Topic :: Software Development :: Libraries :: Python Modules",
3031
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py{39,310}-django32
4-
py{39,310,311}-django42
4+
py{39,310,311,312}-django42
55

66
[testenv]
77
deps =

0 commit comments

Comments
 (0)