Skip to content

Commit

Permalink
Add Django 4.2 to test matrix and classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
foarsitter committed Jun 15, 2023
1 parent 7faa82b commit b6be93b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,13 @@ jobs:
redis-version: 'latest'
python-version: '3.11'

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

# latest Django with pre-release redis
- django-version: '4.1'
- django-version: '4.2'
redis-version: 'master'
python-version: '3.11'

Expand Down
1 change: 1 addition & 0 deletions changelog.d/668.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Run actions & tox against Django 4..2
7 changes: 5 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers =
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Expand Down Expand Up @@ -72,9 +73,9 @@ envlist =
isort
mypy
# tests against released versions
py{36,37,38,39,310,311}-dj{22,31,32,40,41}-redislatest
py{36,37,38,39,310,311}-dj{22,31,32,40,41,42}-redislatest
# tests against unreleased versions
py311-dj41-redismaster
py311-dj42-redismaster
py311-djmain-redis{latest,master}

[gh-actions]
Expand All @@ -91,6 +92,7 @@ DJANGO =
3.2: dj32
4.0: dj40
4.1: dj41
4.2: dj42
main: djmain
REDIS =
latest: redislatest
Expand All @@ -116,6 +118,7 @@ deps =
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
djmain: https://github.com/django/django/archive/main.tar.gz
msgpack>=0.6.0
pytest
Expand Down

0 comments on commit b6be93b

Please sign in to comment.