Skip to content

Commit

Permalink
Added support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ulgens committed Oct 26, 2024
1 parent 093b7fb commit ae44e5f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,26 @@ jobs:
- django-version: '4.2'
redis-version: 'latest'
python-version: '3.9'

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

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

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

# pre-release Django and 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 @@ -26,6 +26,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 @@ -60,9 +61,10 @@ envlist =
# tests against released versions
py{38,39}-dj{42}-redislatest
py{310,311,312}-dj{42,50,51}-redislatest
py313-dj51-redislatest
# tests against unreleased versions
py311-dj51-redismaster
py311-djmain-redis{latest,master}
py313-dj51-redismaster
py313-djmain-redis{latest,master}

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

[gh-actions:env]
DJANGO =
Expand Down

0 comments on commit ae44e5f

Please sign in to comment.