tox updates and version bump
4 files changed, 11 insertions(+), 16 deletions(-)

M README.md
M README.rst
M impersonate/__init__.py
M tox.ini
M README.md +2 -2
@@ 3,7 3,7 @@ 
 
 Simple application to allow superusers to "impersonate" other non-superuser accounts.
 
-**Version:** 1.9.4
+**Version:** 1.9.5
 
 **Project Links:** [Issues][issues] - [Mailing List][pinbox] -
 [Contributing](#contributing)

          
@@ 16,7 16,7 @@ Simple application to allow superusers t
 Python / Django Support
 =======================
 
--   Python 3.7+ for Django versions 3.2+
+-   Python 3.10+ for Django versions 4.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

          
M README.rst +2 -2
@@ 4,7 4,7 @@ django-impersonate |nlshield|
 Simple application to allow superusers to "impersonate" other
 non-superuser accounts.
 
-**Version:** 1.9.4
+**Version:** 1.9.5
 
 **Project Links:**
 `Issues <https://todo.code.netlandish.com/~petersanchez/django-impersonate>`__

          
@@ 17,7 17,7 @@ List <https://lists.code.netlandish.com/
 Python / Django Support
 =======================
 
--  Python 3.7+ for Django versions 3.2+
+-  Python 3.10+ for Django versions 4.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

          
M impersonate/__init__.py +1 -1
@@ 1,5 1,5 @@ 
 # -*- coding: utf-8 -*-
-VERSION = (1, 9, 4, 'final', 0)
+VERSION = (1, 9, 5, 'final', 0)
 
 
 # taken from django-registration

          
M tox.ini +6 -11
@@ 3,19 3,14 @@ downloadcache = {toxworkdir}/cache/
 ; https://docs.djangoproject.com/en/2.2/faq/install/
 ; https://docs.djangoproject.com/en/5.0/faq/install/
 envlist =
-	py{37,38,39,310}-django3.2
-	py{38,39,310}-django4.0
-	py{38,39,310}-django4.1
-	py{38,39,310,311}-django4.1
-	py{38,39,310,311}-django4.2
-	py{310,311,312}-django{5.0,main}
+	py{310,311,312}-django4.2
+	py{310,311,312}-django5.1
+	py{310,311,312,313}-django5.2
 
 [testenv]
 commands = {envpython} runtests.py
 deps =
-	django3.2: django>=3.2,<3.3
-	django4.0: django>=4.0,<4.1
-	django4.1: django>=4.1,<4.2
+	setuptools
 	django4.2: django>=4.2,<4.3
-	django5.0: https://github.com/django/django/archive/stable/5.0.x.tar.gz
-	djangomain: https://github.com/django/django/archive/main.tar.gz
+	django5.1: django>=5.1,<5.2
+	django5.2: django>=5.2,<5.3