Skip to content

Commit 95ff189

Browse files
authored
Merge pull request #627 from foarsitter/django41
Add Django 4.1 to test matrix and classifiers
2 parents 7712d31 + f09d592 commit 95ff189

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- '3.1'
2626
- '3.2'
2727
- '4.0'
28+
- '4.1'
2829
redis-version:
2930
- 'latest'
3031

@@ -47,6 +48,12 @@ jobs:
4748

4849
# exclude python 3.6 and 3.7 for django 4.x as they are not supported see https://docs.djangoproject.com/en/dev/releases/4.0/#python-compatibility
4950
exclude:
51+
- django-version: '4.1'
52+
python-version: '3.6'
53+
54+
- django-version: '4.1'
55+
python-version: '3.7'
56+
5057
- django-version: '4.0'
5158
python-version: '3.6'
5259

changelog.d/627.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add support for django 4

setup.cfg

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers =
1616
Framework :: Django :: 3.1
1717
Framework :: Django :: 3.2
1818
Framework :: Django :: 4.0
19+
Framework :: Django :: 4.1
1920
Intended Audience :: Developers
2021
License :: OSI Approved :: BSD License
2122
Operating System :: OS Independent
@@ -72,7 +73,7 @@ envlist =
7273
isort
7374
mypy
7475
# tests against released versions
75-
py{36,37,38,39,310}-dj{22,31,32,40}-redislatest
76+
py{36,37,38,39,310}-dj{22,31,32,40,41}-redislatest
7677
# tests against unreleased versions
7778
py310-dj40-redismaster
7879
py310-djmain-redis{latest,master}
@@ -91,6 +92,7 @@ DJANGO =
9192
3.1: dj31
9293
3.2: dj32
9394
4.0: dj40
95+
4.1: dj41
9496
main: djmain
9597
REDIS =
9698
latest: redislatest
@@ -116,6 +118,7 @@ deps =
116118
dj31: Django>=3.1,<3.2
117119
dj32: Django>=3.2,<3.3
118120
dj40: Django>=4.0,<4.1
121+
dj41: Django>=4.1,<4.2
119122
djmain: https://github.com/django/django/archive/main.tar.gz
120123
msgpack>=0.6.0
121124
pytest

0 commit comments

Comments
 (0)