Remove Django 1.7 from requirements and testing, set version to 0.2.0

This commit is contained in:
Garret Wassermann 2016-10-21 18:57:14 -04:00 committed by Jonathan Barratt
parent 5e340338b4
commit c5be3e7c45
No known key found for this signature in database
GPG Key ID: BCBF01FBE07879DD
4 changed files with 24 additions and 30 deletions

View File

@ -6,15 +6,9 @@ python:
- "3.5" - "3.5"
env: env:
- DJANGO=1.7.11 - DJANGO=1.8.15
- DJANGO=1.8.7 - DJANGO=1.9.10
- DJANGO=1.9 - DJANGO=1.10.2
- DJANGO=1.10
matrix:
exclude:
- python: "3.5" # django 1.7 does not support python 3.5
env: DJANGO=1.7.11
install: install:
- pip install argparse - pip install argparse

View File

@ -10,7 +10,7 @@ django-helpdesk - A Django powered ticket tracker for small businesses.
Copyright 2009- Ross Poulton and contributors. All Rights Reserved. See LICENSE for details. Copyright 2009- Ross Poulton and contributors. All Rights Reserved. See LICENSE for details.
django-helpdesk was formerly known as Jutda Helpdesk, named after the django-helpdesk was formerly known as Jutda Helpdesk, named after the
company who originally created it. As of January 2011 the name has been company which originally created it. As of January 2011 the name has been
changed to reflect what it really is: a Django-powered ticket tracker with changed to reflect what it really is: a Django-powered ticket tracker with
contributors reaching far beyond Jutda. contributors reaching far beyond Jutda.
@ -29,7 +29,7 @@ Dependencies (pre-flight checklist)
----------------------------------- -----------------------------------
1. Python 2.7 or 3.4+ (3.4+ support is new, please let us know how it goes) 1. Python 2.7 or 3.4+ (3.4+ support is new, please let us know how it goes)
2. Django (1.7, 1.8, 1.9 and 1.10, preferably 1.9 - Django 1.7 is not supported if you are using Python 3.5) 2. Django (1.8+, preferably 1.10)
3. An existing WORKING Django project with database etc. If you 3. An existing WORKING Django project with database etc. If you
cannot log into the Admin, you won't get this product working. cannot log into the Admin, you won't get this product working.
4. `pip install django-bootstrap-form` and add `bootstrapform` to `settings.INSTALLED_APPS` 4. `pip install django-bootstrap-form` and add `bootstrapform` to `settings.INSTALLED_APPS`

View File

@ -1,4 +1,4 @@
Django>1.6 Django>=1.8
django-bootstrap-form>=3.1,<4 django-bootstrap-form>=3.1,<4
email-reply-parser email-reply-parser
django-markdown-deux django-markdown-deux

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.1.18' version = '0.2.0'
# 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: