Skip to content

Commit f8c536b

Browse files
committed
Drop Django 3.2, 4.0 and 4.1
1 parent ab42c1f commit f8c536b

File tree

4 files changed

+6
-18
lines changed

4 files changed

+6
-18
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12"]
34-
django-version: [ "3.2", "4.0", "4.1", "4.2", "5.0"]
34+
django-version: [ "4.2", "5.0"]
3535
drf-version: [ "3.11", "3.12", "3.13" ]
3636
exclude:
3737
# Python 3.8 is incompatible with Django v5+
@@ -40,15 +40,6 @@ jobs:
4040
# Python 3.9 is incompatible with Django v5+
4141
- django-version: 5.0
4242
python-version: 3.9
43-
# Python 3.11+ is incompatible with Django <v4.1
44-
- django-version: 3.2
45-
python-version: 3.11
46-
- django-version: 4.0
47-
python-version: 3.11
48-
- django-version: 3.2
49-
python-version: 3.12
50-
- django-version: 4.0
51-
python-version: 3.12
5243
steps:
5344
- uses: actions/checkout@v3
5445
- uses: actions/setup-python@v4

docs/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Requirements
77
------------
88

99
* Python 3.8 and above
10-
* Django 3.2 and above
10+
* Django 4.2 and above
1111

1212
You will also need the following:
1313

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ keywords = ['django', 'authentication', 'adfs', 'azure', 'ad', 'oauth2']
1212
readme = 'README.rst'
1313
classifiers = [
1414
'Environment :: Web Environment',
15-
'Framework :: Django :: 3.2',
16-
'Framework :: Django :: 4.0',
17-
'Framework :: Django :: 4.1',
1815
'Framework :: Django :: 4.2',
1916
'Framework :: Django :: 5.0',
2017
'Intended Audience :: Developers',
@@ -39,8 +36,8 @@ classifiers = [
3936
[tool.poetry.dependencies]
4037
python = '^3.8'
4138
django = [
42-
{ version = '^3 || ^4', python = '>=3.8 <3.10' },
43-
{ version = '^4 || ^5', python = '>=3.10' },
39+
{ version = '^4.2', python = '>=3.8 <3.10' },
40+
{ version = '^4.2 || ^5', python = '>=3.10' },
4441
]
4542
requests = '*'
4643
urllib3 = '*'

0 commit comments

Comments
 (0)