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

Test on Django 4.1 #604

Merged
merged 2 commits into from
Aug 15, 2022
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
max-parallel: 5
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
django-version: ['2.2', '3.2', '4.0', 'main']
django-version: ['2.2', '3.2', '4.0', '4.1', 'main']
drf-version: ['3.10', '3.11', '3.12', '3.13']
exclude:
- python-version: '3.7'
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
envlist=
py{37,38,39}-dj22-drf310-pyjwt{171,2}-tests
py{37,38,39,310}-dj{22,32}-drf{311,312,313}-pyjwt{171,2}-tests
py{38,39,310}-dj{40,main}-drf313-pyjwt{171,2}-tests
py{38,39,310}-dj{40,41,main}-drf313-pyjwt{171,2}-tests
docs

[gh-actions]
Expand All @@ -17,6 +17,7 @@ DJANGO=
2.2: dj22
3.2: dj32
4.0: dj40
4.1: dj41
main: djmain
DRF=
3.10: drf310
Expand All @@ -35,6 +36,7 @@ deps=
dj22: Django>=2.2,<2.3
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
drf310: djangorestframework>=3.10,<3.11
drf311: djangorestframework>=3.11,<3.12
drf312: djangorestframework>=3.12,<3.13
Expand Down