Skip to content

Commit a0e9f71

Browse files
author
Ülgen Sarıkavak
authored
Add Python 3.12 support (jazzband#516)
Also added missing supported Django version 4.2 to trove classifiers
1 parent 0470ec2 commit a0e9f71

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [ 3.8, 3.9, '3.10', '3.11' ]
19+
python-version: [ 3.8, 3.9, '3.10', '3.11', 3.12 ]
2020

2121
steps:
2222
- uses: actions/checkout@v4

pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@ classifiers = [
2020
"Framework :: Django :: 3.2",
2121
"Framework :: Django :: 4.0",
2222
"Framework :: Django :: 4.1",
23+
"Framework :: Django :: 4.2",
2324
"Programming Language :: Python",
2425
"Programming Language :: Python :: 3",
2526
"Programming Language :: Python :: 3 :: Only",
2627
"Programming Language :: Python :: 3.8",
2728
"Programming Language :: Python :: 3.9",
2829
"Programming Language :: Python :: 3.10",
2930
"Programming Language :: Python :: 3.11",
31+
"Programming Language :: Python :: 3.12",
3032
"Topic :: Software Development :: Libraries :: Python Modules",
3133
]
3234
requires-python = ">=3.8"

tox.ini

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ envlist =
33
py{38,39,310}-django{32}
44
py{38,39,310}-django{40,41,42}
55
py{311}-django{41,42}
6+
py{312}-django{42}
67
isolated_build = True
78

89
[gh-actions]
@@ -11,6 +12,7 @@ python =
1112
3.9: py39
1213
3.10: py310
1314
3.11: py311
15+
3.12: py312
1416

1517
[testenv]
1618
allowlist_externals = ./run.sh

0 commit comments

Comments
 (0)