enable automated testing on python 3.5

Drops support for python 3.3, since django no longer supports
it. See the failure here:
  https://travis-ci.org/tzangms/django-bootstrap-form/jobs/94785903

If python 3.3 support is still needed, we can configure it to
run only on versions of django < 1.9.
This commit is contained in:
Nik Nyby 2015-12-03 20:52:19 -05:00
parent 629d82d26b
commit 6933e45dc9
3 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@ language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install coverage coveralls

View File

@ -38,7 +38,7 @@ class BootstrapTemplateTagTests(TestCase):
maxDiff = None
def setUp(self):
call_command('syncdb', interactive=False)
call_command('migrate', interactive=False)
def test_basic_form(self):
form = ExampleForm()

View File

@ -13,8 +13,8 @@ setup(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords='bootstrap,django',
author='tzangms',