Skip to content

Commit 5d57f51

Browse files
committed
Add Django 4 to test matrix, drop not supported versions
https://endoflife.date/django
1 parent dc031a7 commit 5d57f51

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/django.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
strategy:
1414
max-parallel: 4
1515
matrix:
16-
python-version: [3.7, 3.8, 3.9]
17-
Django-version: [<3.0, <3.2, <4.0]
16+
python-version: ["3.7", "3.8", "3.9", "3.10"]
17+
Django-version: [<3.2, <4.0, <4.1]
1818

1919
steps:
2020
- uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def readfile(filename):
4848
platforms=['OS Independent'],
4949
classifiers=CLASSIFIERS,
5050
install_requires=[
51-
'Django>=1.8,<3.3',
51+
'Django>=3.2,<4.1',
5252
],
5353
packages=find_packages(exclude=['example', 'docs']),
5454
include_package_data=True,

0 commit comments

Comments
 (0)