Skip to content

Commit

Permalink
Merge pull request #689 from foarsitter/py312
Browse files Browse the repository at this point in the history
  • Loading branch information
WisdomPill authored Oct 25, 2024
2 parents f98dcce + 6321750 commit 0f3f824
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
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

0 comments on commit 0f3f824

Please sign in to comment.