M README.md +2 -2
@@ 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 @@ Simple application to allow superusers t
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
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.1
+**Version:** 1.9.2
**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 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
M impersonate/__init__.py +1 -1
@@ 1,5 1,5 @@
# -*- coding: utf-8 -*-
-VERSION = (1, 9, 1, 'final', 0)
+VERSION = (1, 9, 2, 'final', 0)
# taken from django-registration
M setup.py +0 -1
@@ 45,7 45,6 @@ setup(
'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',
M tox.ini +0 -7
@@ 3,10 3,6 @@ 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}-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 @@ envlist =
[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