Skip to content

Commit 6933e45

Browse files
committed
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.
1 parent 629d82d commit 6933e45

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ language: python
22

33
python:
44
- "2.7"
5-
- "3.3"
65
- "3.4"
6+
- "3.5"
77

88
install:
99
- pip install coverage coveralls

bootstrapform/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class BootstrapTemplateTagTests(TestCase):
3838
maxDiff = None
3939

4040
def setUp(self):
41-
call_command('syncdb', interactive=False)
41+
call_command('migrate', interactive=False)
4242

4343
def test_basic_form(self):
4444
form = ExampleForm()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"Programming Language :: Python :: 2",
1414
"Programming Language :: Python :: 2.7",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.3",
1716
"Programming Language :: Python :: 3.4",
17+
"Programming Language :: Python :: 3.5",
1818
],
1919
keywords='bootstrap,django',
2020
author='tzangms',

0 commit comments

Comments
 (0)