From 9dbba05bb6833e3e63573bf59f1a4c224426d370 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Fri, 8 Apr 2022 10:28:16 +0200 Subject: [PATCH] Drop Django 2.2 support. --- CHANGELOG.rst | 2 ++ README.rst | 2 +- requirements/test.txt | 2 +- setup.cfg | 3 +-- tox.ini | 2 -- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4f242c28..3b681637 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,8 @@ Changelog (Unreleased) ~~~~~~~~~~~~ +* Drop Django 2.2 support. + 2.1.0 (2022-01-24) ~~~~~~~~~~~~~~~~~~ diff --git a/README.rst b/README.rst index 381e40e8..bf2ab9cf 100644 --- a/README.rst +++ b/README.rst @@ -57,7 +57,7 @@ Then you can use the API like so: Tags will show up for you automatically in forms and the admin. -``django-taggit`` requires Django 2.2 or greater. +``django-taggit`` requires Django 3.2 or greater. For more info check out the `documentation `_. And for questions about usage or diff --git a/requirements/test.txt b/requirements/test.txt index ff8ccf97..64d02525 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,2 +1,2 @@ -Django>=2.2 +Django>=3.2 coverage diff --git a/setup.cfg b/setup.cfg index 1ff910d8..9064bb00 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,7 +11,6 @@ classifiers = Development Status :: 5 - Production/Stable Environment :: Web Environment Framework :: Django - Framework :: Django :: 2.2 Framework :: Django :: 3.2 Framework :: Django :: 4.0 Intended Audience :: Developers @@ -33,7 +32,7 @@ project_urls = [options] python_requires = >=3.6 packages = find: -install_requires = Django>=2.2 +install_requires = Django>=3.2 include_package_data = true zip_safe = false diff --git a/tox.ini b/tox.ini index a7403ba0..6a88a212 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,6 @@ envlist = black flake8 isort - py{36,37,38,39}-dj22 py{36,37,38,39,310}-dj32 py{38,39,310}-dj{40,main} docs @@ -19,7 +18,6 @@ python = [testenv] deps = - dj22: Django>=2.2,<3.0 dj32: Django>=3.2,<3.3 dj40: Django>=4.0,<4.1 djmain: https://github.com/django/django/archive/main.tar.gz