Skip to content

Commit bda3b04

Browse files
offbyonejefftriplett
authored andcommitted
Test on 3.12
1 parent b0732c3 commit bda3b04

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/actions.yml

+6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- "3.9"
2626
- "3.10"
2727
- "3.11"
28+
- "3.12"
2829
django-version:
2930
- "2.2" # LTS
3031
- "3.2" # LTS
@@ -48,6 +49,11 @@ jobs:
4849
django-version: "2.2"
4950
- python-version: "3.11"
5051
django-version: "3.2"
52+
# Python 3.12 is compatible with Django 4.0+
53+
- python-version: "3.12"
54+
django-version: "2.2"
55+
- python-version: "3.12"
56+
django-version: "3.2"
5157
# Django 4.0 is compatible with Python 3.8+
5258
- python-version: "3.6"
5359
django-version: "4.0"

noxfile.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
DJANGO_VERSIONS = ["2.2", "3.2", "4.1", "4.2"]
44
DRF_VERSIONS = ["3.11", "3.12", "3.13", "3.14"]
5-
PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11"]
5+
PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
66

77
INVALID_PYTHON_DJANGO_SESSIONS = [
88
("3.11", "3.2"),
9+
("3.12", "3.2"),
910
]
1011

1112

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ classifiers =
3232
Programming Language :: Python :: 3.9
3333
Programming Language :: Python :: 3.10
3434
Programming Language :: Python :: 3.11
35+
Programming Language :: Python :: 3.12
3536

3637
[options]
3738
include_package_data = True

0 commit comments

Comments
 (0)