Skip to content

Added support for Python 3.13 #756

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,26 @@ jobs:
- django-version: '4.2'
redis-version: 'latest'
python-version: '3.9'

# latest Django with latest redis
- django-version: '5.2'
redis-version: 'latest'
python-version: '3.13'

# latest Django with pre-release redis
- django-version: '5.2'
redis-version: 'master'
python-version: '3.12'
python-version: '3.13'

# latest redis with pre-release Django
# pre-release Django with latest redis
- django-version: 'main'
redis-version: 'latest'
python-version: '3.12'
python-version: '3.13'

# pre-release Django and redis
# pre-release Django and pre-release redis
- django-version: 'main'
redis-version: 'master'
python-version: '3.12'
python-version: '3.13'

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions changelog.d/756.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added support for Python 3.13
7 changes: 5 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Software Development :: Libraries
Topic :: Utilities

Expand Down Expand Up @@ -61,9 +62,10 @@ envlist =
# tests against released versions
py{38,39}-dj{42}-redislatest
py{310,311,312}-dj{42,50,51,52}-redislatest
py313-dj{51,52}-redislatest
# tests against unreleased versions
py312-dj52-redismaster
py312-djmain-redis{latest,master}
py313-dj52-redismaster
py313-djmain-redis{latest,master}

[gh-actions]
python =
Expand All @@ -72,6 +74,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[gh-actions:env]
DJANGO =
Expand Down
Loading