Skip to content

Commit

Permalink
Bump version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
gwasser committed Aug 28, 2019
1 parent 073ebab commit 6d538da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions demo/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
NAME = 'django-helpdesk-demodesk'
DESCRIPTION = 'A demo Django project using django-helpdesk'
README = open(os.path.join(here, 'README.rst')).read()
VERSION = '0.2.16'
VERSION = '0.2.17'
#VERSION = open(os.path.join(project_root, 'VERSION')).read().strip()
AUTHOR = 'django-helpdesk team'
URL = 'https://github.com/django-helpdesk/django-helpdesk'
Expand All @@ -23,9 +23,11 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1']
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2']
KEYWORDS = []
PACKAGES = ['demodesk']
REQUIREMENTS = [
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from fnmatch import fnmatchcase
from setuptools import setup, find_packages

version = '0.2.16'
version = '0.2.17'

# Provided as an attribute, so you can append to these instead
# of replicating them:
Expand Down Expand Up @@ -134,10 +134,12 @@ def get_requirements():
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
'Framework :: Django :: 2.2',
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Customer Service",
Expand Down

0 comments on commit 6d538da

Please sign in to comment.