Set default autofield to be compatible for django 3.2

This commit is contained in:
Garret Wassermann
2021-09-17 10:09:20 -04:00
parent f53ee1366d
commit 66ed61ee6a
5 changed files with 12 additions and 3 deletions

View File

@ -13,7 +13,7 @@ project_root = os.path.dirname(here)
NAME = 'django-helpdesk-demodesk'
DESCRIPTION = 'A demo Django project using django-helpdesk'
README = open(os.path.join(here, 'README.rst')).read()
VERSION = '0.3.0b3'
VERSION = '0.3.0b4'
#VERSION = open(os.path.join(project_root, 'VERSION')).read().strip()
AUTHOR = 'django-helpdesk team'
URL = 'https://github.com/django-helpdesk/django-helpdesk'
@ -24,7 +24,8 @@ CLASSIFIERS = ['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.8',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1']
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2']
KEYWORDS = []
PACKAGES = ['demodesk']
REQUIREMENTS = [