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 Django 4.2 to test matrix and classifiers #668

Merged
merged 1 commit into from
Jun 15, 2023
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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
WisdomPill marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- '3.2'
- '4.0'
- '4.1'
- '4.2'
redis-version:
- 'latest'

Expand All @@ -43,8 +44,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
Loading