Skip to content

Commit 54007c9

Browse files
Drop support for Django 4.1
Upstream dropped support in January 2024.
1 parent 69809cf commit 54007c9

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ testall:
5252
tox
5353

5454
# DOC: Run tests for the currently installed version
55-
# Remove cgi warning when dropping support for Django<=4.1.
5655
test:
5756
python \
5857
-b \
@@ -62,7 +61,6 @@ test:
6261
-Wdefault:"Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working":DeprecationWarning:: \
6362
-Wdefault:"set_output_charset() is deprecated":DeprecationWarning:: \
6463
-Wdefault:"parameter codeset is deprecated":DeprecationWarning:: \
65-
-Wdefault:"'cgi' is deprecated and slated for removal in Python 3.13":DeprecationWarning:: \
6664
-Wdefault:"datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version.":DeprecationWarning:: \
6765
-m unittest
6866

docs/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ ChangeLog
1919
*Removed:*
2020

2121
- Drop support for Django 4.0
22+
- Drop support for Django 4.1
2223

2324
3.3.0 (2023-07-19)
2425
------------------

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ classifiers =
1616
Development Status :: 5 - Production/Stable
1717
Framework :: Django
1818
Framework :: Django :: 3.2
19-
Framework :: Django :: 4.1
2019
Framework :: Django :: 4.2
2120
Framework :: Django :: 5.0
2221
Intended Audience :: Developers

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ envlist =
77
linkcheck
88
py{38,39,310,311,312,py39,py310}-sqlite
99
py{38,39,310,311,py39,py310}-django32-mongo-alchemy-{sqlite,postgres}
10-
py{38,39,310,311,py39,py310}-django41-mongo-alchemy-{sqlite,postgres}
1110
py{38,39,310,311,312}-django42-mongo-alchemy-{sqlite,postgres}
1211
py{py39,py310}-django42-mongo-alchemy-sqlite,
1312
# py{py39,py310}-django42-mongo-alchemy-postgres # TODO: Fix me!
@@ -38,9 +37,8 @@ deps =
3837
alchemy: SQLAlchemy
3938
alchemy: sqlalchemy_utils
4039
mongo: mongoengine
41-
django{32,41,42,50,main}: Pillow
40+
django{32,42,50,main}: Pillow
4241
django32: Django>=3.2,<3.3
43-
django41: Django>=4.1,<4.2
4442
django42: Django>=4.2,<5.0
4543
django50: Django>=5.0,<5.1
4644
djangomain: https://github.com/django/django/archive/main.tar.gz

0 commit comments

Comments
 (0)