Skip to content

Commit 5a866bc

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

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ jobs:
3636
redis-version: 'latest'
3737
python-version: '3.9'
3838

39+
# Django 4.2 and python 3.12 with latest redis
40+
- django-version: '4.2'
41+
redis-version: 'latest'
42+
python-version: '3.12'
43+
3944
# latest Django with pre-release redis
4045
- django-version: '5.1'
4146
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: 3 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,7 @@ 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,310,311,312}-dj{42,50,51}-redislatest
6162
# tests against unreleased versions
6263
py311-dj51-redismaster
6364
py311-djmain-redis{latest,master}
@@ -68,6 +69,7 @@ python =
6869
3.9: py39
6970
3.10: py310
7071
3.11: py311
72+
3.12: py312
7173

7274
[gh-actions:env]
7375
DJANGO =

0 commit comments

Comments
 (0)