Skip to content

Commit 58a4528

Browse files
committed
Add Python 3.12 to test matrix and add classifier
1 parent f98dcce commit 58a4528

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
python-version:
1818
- '3.10'
1919
- '3.11'
20+
- '3.12'
2021
django-version:
2122
- '4.2'
2223
- '5.0'
@@ -36,6 +37,7 @@ jobs:
3637
redis-version: 'latest'
3738
python-version: '3.9'
3839

40+
3941
# latest Django with pre-release redis
4042
- django-version: '5.1'
4143
redis-version: 'master'

changelog.d/689.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Added support for Python 3.12

setup.cfg

Lines changed: 4 additions & 1 deletion
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 :: Software Development :: Libraries
2930
Topic :: Utilities
3031

@@ -57,7 +58,8 @@ envlist =
5758
ruff
5859
mypy
5960
# tests against released versions
60-
py{38,39,310,311}-dj{42,50,51}-redislatest
61+
py{38,39}-dj{42}-redislatest
62+
py{310,311,312}-dj{42,50,51}-redislatest
6163
# tests against unreleased versions
6264
py311-dj51-redismaster
6365
py311-djmain-redis{latest,master}
@@ -68,6 +70,7 @@ python =
6870
3.9: py39
6971
3.10: py310
7072
3.11: py311
73+
3.12: py312
7174

7275
[gh-actions:env]
7376
DJANGO =

0 commit comments

Comments
 (0)