Skip to content
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

Add Python 3.12 to test matrix and add classifier #689

Merged
merged 2 commits into from
Oct 25, 2024
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
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
python-version:
- '3.10'
- '3.11'
- '3.12'
django-version:
- '4.2'
- '5.0'
Expand All @@ -39,17 +40,17 @@ jobs:
# latest Django with pre-release redis
- django-version: '5.1'
redis-version: 'master'
python-version: '3.11'
python-version: '3.12'

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

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

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

Expand Down Expand Up @@ -57,7 +58,8 @@ envlist =
ruff
mypy
# tests against released versions
py{38,39,310,311}-dj{42,50,51}-redislatest
py{38,39}-dj{42}-redislatest
py{310,311,312}-dj{42,50,51}-redislatest
# tests against unreleased versions
py311-dj51-redismaster
py311-djmain-redis{latest,master}
Expand All @@ -68,6 +70,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

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