# HG changeset patch # User Peter Sanchez # Date 1700765831 21600 # Thu Nov 23 12:57:11 2023 -0600 # Node ID ed7f09b3bb9f2168888c15562e29471ea82373c2 # Parent fa5d1a7039601537e32a42949fc7d53ec09be5ec Updating docs for new version diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Simple application to allow superusers to "impersonate" other non-superuser accounts. -**Version:** 1.9.1 +**Version:** 1.9.2 **Project Links:** [Issues][issues] - [Mailing List][pinbox] - [Contributing](#contributing) @@ -16,7 +16,7 @@ Python / Django Support ======================= -- Python 3.7+ for Django versions 2.2+ +- Python 3.7+ for Django versions 3.2+ **Note:** As of version 1.4 we are only officially supporting Python and Django versions that are supported by the official projects. So if a Python diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ Simple application to allow superusers to "impersonate" other non-superuser accounts. -**Version:** 1.9.1 +**Version:** 1.9.2 **Project Links:** `Issues `__ @@ -17,7 +17,7 @@ Python / Django Support ======================= -- Python 3.7+ for Django versions 2.2+ +- Python 3.7+ for Django versions 3.2+ **Note:** As of version 1.4 we are only officially supporting Python and Django versions that are supported by the official projects. So if a diff --git a/impersonate/__init__.py b/impersonate/__init__.py --- a/impersonate/__init__.py +++ b/impersonate/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -VERSION = (1, 9, 1, 'final', 0) +VERSION = (1, 9, 2, 'final', 0) # taken from django-registration diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -45,7 +45,6 @@ 'Natural Language :: English', 'Operating System :: OS Independent', 'Framework :: Django', - 'Framework :: Django :: 2.2', 'Framework :: Django :: 3.2', 'Framework :: Django :: 4.0', 'Framework :: Django :: 4.1', diff --git a/tox.ini b/tox.ini --- a/tox.ini +++ b/tox.ini @@ -3,10 +3,6 @@ ; https://docs.djangoproject.com/en/2.2/faq/install/ ; https://docs.djangoproject.com/en/5.0/faq/install/ envlist = - py{37,38,39}-django2.2 - ; Django 3.0 / 3.1 not included in PyPI classifiers - ; py{37,38,39}-django3.0 - ; py{37,38,39}-django3.1 py{37,38,39,310}-django3.2 py{38,39,310}-django4.0 py{38,39,310}-django4.1 @@ -17,9 +13,6 @@ [testenv] commands = {envpython} runtests.py deps = - django2.2: django>=2.2,<3.0 - django3.0: django>=3.0,<3.1 - django3.1: django>=3.1,<3.2 django3.2: django>=3.2,<3.3 django4.0: django>=4.0,<4.1 django4.1: django>=4.1,<4.2