Skip to content
This repository was archived by the owner on Feb 11, 2020. It is now read-only.

Commit f058e1a

Browse files
committed
Added support for Django 1.9
1 parent 574e1d1 commit f058e1a

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ matrix:
1414
- env: TOXENV=py34-dj18
1515
- env: TOXENV=py35-dj18
1616
python: 3.5
17+
- env: TOXENV=py27-dj19
18+
- env: TOXENV=py34-dj19
19+
- env: TOXENV=py35-dj19
20+
python: 3.5
1721
- env: TOXENV=flake8
1822

1923
# Package installation

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Features
3636
* Ready-to-use Bootstrap component templates
3737
* Intuitive template tag API for generating valid Bootstrap markup
3838
* Extensive and up-to-date documentation
39-
* Mainstream Python (2.7, 3.3, 3.4, 3.5) and Django (1.7, 1.8) support
39+
* Mainstream Python (2.7, 3.3, 3.4, 3.5) and Django (1.7, 1.8, 1.9) support
4040
* Outstanding test coverage
4141
* Continuously integrated codebase
4242

bootstrap_ui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.0'
1+
__version__ = '0.2.0'

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Features
3636
* Ready-to-use Bootstrap component templates
3737
* Intuitive template tag API for generating valid Bootstrap markup
3838
* Extensive and up-to-date documentation
39-
* Mainstream Python (2.7, 3.3, 3.4, 3.5) and Django (1.7, 1.8) support
39+
* Mainstream Python (2.7, 3.3, 3.4, 3.5) and Django (1.7, 1.8, 1.9) support
4040
* Outstanding test coverage
4141
* Continuously integrated codebase
4242

docs/releases/0.2.0.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ Features
88

99
* Implemented grid column offsets
1010
* Added grid column pushes and pulls
11-
* Established support for Python 3.5
11+
* Added support for Django 1.9
12+
* Added support for Python 3.5

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
author='Timo Rieber',
2222
author_email='[email protected]',
2323
install_requires=[
24-
'django>=1.7,<1.9',
24+
'django>=1.7,<1.10',
2525
'django-tag-parser>=2.1,<2.2',
2626
'dominate>=2.1,<2.2',
2727
],
@@ -31,6 +31,7 @@
3131
'Framework :: Django',
3232
'Framework :: Django :: 1.7',
3333
'Framework :: Django :: 1.8',
34+
'Framework :: Django :: 1.9',
3435
'Intended Audience :: Developers',
3536
'License :: OSI Approved :: ISC License (ISCL)',
3637
'Operating System :: OS Independent',

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,33,34,35}-dj{17,18}, flake8
2+
envlist = py{27,33,34,35}-dj{17,18,19}, flake8
33

44
[flake8]
55
max-line-length = 120
@@ -21,6 +21,7 @@ deps =
2121

2222
dj17: Django>=1.7,<1.8
2323
dj18: Django>=1.8,<1.9
24+
dj19: Django>=1.9,<1.10
2425

2526
[testenv:flake8]
2627
commands = flake8 bootstrap_ui

0 commit comments

Comments
 (0)