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 44fd60970b
commit 904a83e2fe
No known key found for this signature in database
GPG Key ID: BCBF01FBE07879DD
4 changed files with 19 additions and 25 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

@ -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: