Skip to content

Commit b2c9a3f

Browse files
authored
Merge pull request #290 from amureki/django-4.0
Add Django 4.0 support
2 parents dc031a7 + 0aefeb9 commit b2c9a3f

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
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 & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,10 @@ def readfile(filename):
2121
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
2222
'Topic :: Software Development :: Libraries :: Application Frameworks',
2323
'Development Status :: 5 - Production/Stable',
24-
'Programming Language :: Python :: 3.6',
2524
'Programming Language :: Python :: 3.7',
2625
'Programming Language :: Python :: 3.8',
2726
'Programming Language :: Python :: 3.9',
2827
'Framework :: Django',
29-
'Framework :: Django :: 2.2',
30-
'Framework :: Django :: 3.0',
31-
'Framework :: Django :: 3.1',
3228
'Framework :: Django :: 3.2',
3329
'Framework :: Django :: 4.0',
3430
]
@@ -48,7 +44,7 @@ def readfile(filename):
4844
platforms=['OS Independent'],
4945
classifiers=CLASSIFIERS,
5046
install_requires=[
51-
'Django>=1.8,<3.3',
47+
'Django>=3.2,<4.1',
5248
],
5349
packages=find_packages(exclude=['example', 'docs']),
5450
include_package_data=True,

0 commit comments

Comments
 (0)