Updating classifiers per ~petersanchez/django-impersonate#64
4 files changed, 7 insertions(+), 6 deletions(-)

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

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

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

          
M setup.py +4 -3
@@ 45,13 45,14 @@ setup(
         'Natural Language :: English',
         'Operating System :: OS Independent',
         'Framework :: Django',
-        'Framework :: Django :: 1.11',
         'Framework :: Django :: 2.2',
-        'Framework :: Django :: 3.0',
+        'Framework :: Django :: 3.2',
+        'Framework :: Django :: 4.0',
         'Programming Language :: Python',
-        'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
+        'Programming Language :: Python :: 3.9',
+        'Programming Language :: Python :: 3.10',
         'Environment :: Web Environment',
     ],
 )