# HG changeset patch # User Peter Sanchez # Date 1645724206 21600 # Thu Feb 24 11:36:46 2022 -0600 # Node ID 8c6bb4de1e02532c78ad9c47d3315cca4e44e1f0 # Parent 711af9e838de1ac44f5c13b5e31813ad28454239 Updating classifiers per ~petersanchez/django-impersonate#64 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.8.1 +**Version:** 1.8.2 **Project Links:** [Issues][issues] - [Mailing List][pinbox] - [Contributing](#contributing) 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.8.1 +**Version:** 1.8.2 **Project Links:** `Issues `__ 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, 8, 1, 'final', 0) +VERSION = (1, 8, 2, 'final', 0) # taken from django-registration diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -45,13 +45,14 @@ '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', ], )