Bump version to 0.2.7, add README note about initial Django 2.0 support

This commit is contained in:
Garret Wassermann 2018-03-04 02:09:54 -05:00
parent 3c456873a5
commit 6cb1ad740a
3 changed files with 11 additions and 4 deletions

View File

@ -62,7 +62,7 @@ Installation
`django-helpdesk` requires: `django-helpdesk` requires:
* Django 1.11.x *only* * Django 1.11.x
* either Python 2.7 or 3.4+ * either Python 2.7 or 3.4+
**NOTE REGARDING PYTHON VERSION:** **NOTE REGARDING PYTHON VERSION:**
@ -72,6 +72,11 @@ and Django itself (Django 2.0), so users and developers are encouraged to begin
transitioning to Python 3 if have not already. New projects should definitely transitioning to Python 3 if have not already. New projects should definitely
use Python 3! use Python 3!
**NOTE REGARDING DJANGO VERSION:**
The recommended release is Django 1.11. However, there initial support of
Django 2.0 as of version 0.2.7 if you'd like to try it out.
Please report any bugs you find!
You can quickly install the latest stable version of `django-helpdesk` You can quickly install the latest stable version of `django-helpdesk`
app via `pip`:: app via `pip`::

View File

@ -13,7 +13,7 @@ project_root = os.path.dirname(here)
NAME = 'django-helpdesk-demodesk' NAME = 'django-helpdesk-demodesk'
DESCRIPTION = 'A demo Django project using django-helpdesk' DESCRIPTION = 'A demo Django project using django-helpdesk'
README = open(os.path.join(here, 'README.rst')).read() README = open(os.path.join(here, 'README.rst')).read()
VERSION = '0.2.6' VERSION = '0.2.7'
#VERSION = open(os.path.join(project_root, 'VERSION')).read().strip() #VERSION = open(os.path.join(project_root, 'VERSION')).read().strip()
AUTHOR = 'django-helpdesk team' AUTHOR = 'django-helpdesk team'
URL = 'https://github.com/django-helpdesk/django-helpdesk' URL = 'https://github.com/django-helpdesk/django-helpdesk'
@ -23,7 +23,8 @@ CLASSIFIERS = ['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Framework :: Django'] 'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0']
KEYWORDS = [] KEYWORDS = []
PACKAGES = ['demodesk'] PACKAGES = ['demodesk']
REQUIREMENTS = [ REQUIREMENTS = [

View File

@ -6,7 +6,7 @@ from distutils.util import convert_path
from fnmatch import fnmatchcase from fnmatch import fnmatchcase
from setuptools import setup, find_packages from setuptools import setup, find_packages
version = '0.2.6' version = '0.2.7'
# Provided as an attribute, so you can append to these instead # Provided as an attribute, so you can append to these instead
# of replicating them: # of replicating them:
@ -136,6 +136,7 @@ setup(
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Framework :: Django", "Framework :: Django",
"Framework :: Django :: 1.11", "Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Environment :: Web Environment", "Environment :: Web Environment",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Intended Audience :: Customer Service", "Intended Audience :: Customer Service",