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

Commit

Permalink
Added support for Django 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
timorieber committed Dec 13, 2015
1 parent 574e1d1 commit f058e1a
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ matrix:
- env: TOXENV=py34-dj18
- env: TOXENV=py35-dj18
python: 3.5
- env: TOXENV=py27-dj19
- env: TOXENV=py34-dj19
- env: TOXENV=py35-dj19
python: 3.5
- env: TOXENV=flake8

# Package installation
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Features
* Ready-to-use Bootstrap component templates
* Intuitive template tag API for generating valid Bootstrap markup
* Extensive and up-to-date documentation
* Mainstream Python (2.7, 3.3, 3.4, 3.5) and Django (1.7, 1.8) support
* Mainstream Python (2.7, 3.3, 3.4, 3.5) and Django (1.7, 1.8, 1.9) support
* Outstanding test coverage
* Continuously integrated codebase

Expand Down
2 changes: 1 addition & 1 deletion bootstrap_ui/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.0'
__version__ = '0.2.0'
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Features
* Ready-to-use Bootstrap component templates
* Intuitive template tag API for generating valid Bootstrap markup
* Extensive and up-to-date documentation
* Mainstream Python (2.7, 3.3, 3.4, 3.5) and Django (1.7, 1.8) support
* Mainstream Python (2.7, 3.3, 3.4, 3.5) and Django (1.7, 1.8, 1.9) support
* Outstanding test coverage
* Continuously integrated codebase

Expand Down
3 changes: 2 additions & 1 deletion docs/releases/0.2.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ Features

* Implemented grid column offsets
* Added grid column pushes and pulls
* Established support for Python 3.5
* Added support for Django 1.9
* Added support for Python 3.5
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author='Timo Rieber',
author_email='dev@timorieber.de',
install_requires=[
'django>=1.7,<1.9',
'django>=1.7,<1.10',
'django-tag-parser>=2.1,<2.2',
'dominate>=2.1,<2.2',
],
Expand All @@ -31,6 +31,7 @@
'Framework :: Django',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,33,34,35}-dj{17,18}, flake8
envlist = py{27,33,34,35}-dj{17,18,19}, flake8

[flake8]
max-line-length = 120
Expand All @@ -21,6 +21,7 @@ deps =

dj17: Django>=1.7,<1.8
dj18: Django>=1.8,<1.9
dj19: Django>=1.9,<1.10

[testenv:flake8]
commands = flake8 bootstrap_ui
Expand Down

0 comments on commit f058e1a

Please sign in to comment.