diff --git a/.travis.yml b/.travis.yml index b50d876..0e1b56a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,8 @@ language: python python: - "2.7" - - "3.3" - "3.4" + - "3.5" install: - pip install coverage coveralls diff --git a/bootstrapform/tests.py b/bootstrapform/tests.py index 5b90058..dd9747e 100644 --- a/bootstrapform/tests.py +++ b/bootstrapform/tests.py @@ -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() diff --git a/setup.py b/setup.py index b4a0f61..74a79cc 100644 --- a/setup.py +++ b/setup.py @@ -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',