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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ jobs:
redis-version: 'latest'
python-version: '3.9'

# Django 4.2 and python 3.12 with latest redis
- django-version: '4.2'
redis-version: 'latest'
python-version: '3.12'

# latest Django with pre-release redis
- django-version: '5.0'
redis-version: 'master'
Expand Down Expand Up @@ -76,7 +81,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox tox-gh-actions
python -m pip install --upgrade tox tox-gh-actions setuptools

- name: Tox tests
run: |
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
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,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 @@ -59,6 +60,7 @@ envlist =
py{38,39,310,311}-dj{42,50}-redislatest
# tests against unreleased versions
py311-dj50-redismaster
py312-dj42-redislatest
py311-djmain-redis{latest,master}

[gh-actions]
Expand All @@ -67,6 +69,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

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