Skip to content

Commit ae44e5f

Browse files
committed
Added support for Python 3.13
1 parent 093b7fb commit ae44e5f

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,26 @@ jobs:
3636
- django-version: '4.2'
3737
redis-version: 'latest'
3838
python-version: '3.9'
39+
40+
# Django 5.1 and python 3.13 with latest redis
41+
- django-version: '5.1'
42+
redis-version: 'latest'
43+
python-version: '3.13'
3944

4045
# latest Django with pre-release redis
4146
- django-version: '5.1'
4247
redis-version: 'master'
43-
python-version: '3.12'
48+
python-version: '3.13'
4449

4550
# latest redis with pre-release Django
4651
- django-version: 'main'
4752
redis-version: 'latest'
48-
python-version: '3.12'
53+
python-version: '3.13'
4954

5055
# pre-release Django and redis
5156
- django-version: 'main'
5257
redis-version: 'master'
53-
python-version: '3.12'
58+
python-version: '3.13'
5459

5560
steps:
5661
- uses: actions/checkout@v4

changelog.d/756.misc

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

setup.cfg

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers =
2626
Programming Language :: Python :: 3.10
2727
Programming Language :: Python :: 3.11
2828
Programming Language :: Python :: 3.12
29+
Programming Language :: Python :: 3.13
2930
Topic :: Software Development :: Libraries
3031
Topic :: Utilities
3132

@@ -60,9 +61,10 @@ envlist =
6061
# tests against released versions
6162
py{38,39}-dj{42}-redislatest
6263
py{310,311,312}-dj{42,50,51}-redislatest
64+
py313-dj51-redislatest
6365
# tests against unreleased versions
64-
py311-dj51-redismaster
65-
py311-djmain-redis{latest,master}
66+
py313-dj51-redismaster
67+
py313-djmain-redis{latest,master}
6668

6769
[gh-actions]
6870
python =
@@ -71,6 +73,7 @@ python =
7173
3.10: py310
7274
3.11: py311
7375
3.12: py312
76+
3.13: py313
7477

7578
[gh-actions:env]
7679
DJANGO =

0 commit comments

Comments
 (0)