From a81beb4d49efc21542afb67b6b9c19c1442af89c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Freitag?= Date: Tue, 19 Mar 2024 11:23:20 +0100 Subject: [PATCH] Drop support for Django 4.1 Upstream dropped support in January 2024. --- Makefile | 2 +- docs/changelog.rst | 1 + setup.cfg | 1 - tox.ini | 4 +--- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 0dbae867..9e0210bc 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ testall: tox # DOC: Run tests for the currently installed version -# Remove cgi warning when dropping support for Django<=4.1. +# Remove cgi warning when dropping support for Django 3.2. test: mypy --ignore-missing-imports tests/test_typing.py python \ diff --git a/docs/changelog.rst b/docs/changelog.rst index 6397f107..c5fc0767 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -20,6 +20,7 @@ ChangeLog *Removed:* - Drop support for Django 4.0 +- Stop advertising and verifying support for Django 4.1 3.3.0 (2023-07-19) ------------------ diff --git a/setup.cfg b/setup.cfg index 13b09b91..4f93b98c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,7 +16,6 @@ classifiers = Development Status :: 5 - Production/Stable Framework :: Django Framework :: Django :: 3.2 - Framework :: Django :: 4.1 Framework :: Django :: 4.2 Framework :: Django :: 5.0 Intended Audience :: Developers diff --git a/tox.ini b/tox.ini index d842c759..17dfdb50 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,6 @@ envlist = linkcheck py{38,39,310,311,312,py39,py310}-sqlite py{38,39,310,311,py39,py310}-django32-mongo-alchemy-{sqlite,postgres} - py{38,39,310,311,py39,py310}-django41-mongo-alchemy-{sqlite,postgres} py{38,39,310,311,312}-django42-mongo-alchemy-{sqlite,postgres} py{py39,py310}-django42-mongo-alchemy-sqlite, # py{py39,py310}-django42-mongo-alchemy-postgres # TODO: Fix me! @@ -39,9 +38,8 @@ deps = alchemy: SQLAlchemy alchemy: sqlalchemy_utils mongo: mongoengine - django{32,41,42,50,main}: Pillow + django{32,42,50,main}: Pillow django32: Django>=3.2,<3.3 - django41: Django>=4.1,<4.2 django42: Django>=4.2,<5.0 django50: Django>=5.0,<5.1 djangomain: https://github.com/django/django/archive/main.tar.gz