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

Commit 3e358c0

Browse files
committed
Added support for Python 3.6
1 parent e7d4b37 commit 3e358c0

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ matrix:
3232
python: 3.4
3333
- env: TOXENV=py35-dj111
3434
python: 3.5
35+
- env: TOXENV=py36-dj111
36+
python: 3.6
3537
- env: TOXENV=flake8
3638

3739
# Package installation

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Features
3131
* Ready-to-use Bootstrap component templates
3232
* Intuitive template tag API for generating valid Bootstrap markup
3333
* Extensive and up-to-date documentation
34-
* Mainstream Python (2.7, 3.3, 3.4, 3.5) and Django (1.8, 1.9, 1.10, 1.11) support
34+
* Mainstream Python (2.7, 3.3, 3.4, 3.5, 3.6) and Django (1.8, 1.9, 1.10, 1.11) support
3535
* Outstanding test coverage
3636
* Continuously integrated codebase
3737

@@ -49,7 +49,7 @@ Below is the list of currently supported combinations of Django and Python:
4949
+------------+------------+--------------------+
5050
| 2 | 1.9, 1.10 | 2.7, 3.4, 3.5 |
5151
+------------+------------+--------------------+
52-
| 3 | 1.11 | 2.7, 3.4, 3.5 |
52+
| 3 | 1.11 | 2.7, 3.4, 3.5, 3.6 |
5353
+------------+------------+--------------------+
5454

5555
Installation

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Features
3131
* Ready-to-use Bootstrap component templates
3232
* Intuitive template tag API for generating valid Bootstrap markup
3333
* Extensive and up-to-date documentation
34-
* Mainstream Python (2.7, 3.3, 3.4, 3.5) and Django (1.8, 1.9, 1.10, 1.11) support
34+
* Mainstream Python (2.7, 3.3, 3.4, 3.5, 3.6) and Django (1.8, 1.9, 1.10, 1.11) support
3535
* Outstanding test coverage
3636
* Continuously integrated codebase
3737

@@ -49,7 +49,7 @@ Below is the list of currently supported combinations of Django and Python:
4949
+------------+------------+--------------------+
5050
| 2 | 1.9, 1.10 | 2.7, 3.4, 3.5 |
5151
+------------+------------+--------------------+
52-
| 3 | 1.11 | 2.7, 3.4, 3.5 |
52+
| 3 | 1.11 | 2.7, 3.4, 3.5, 3.6 |
5353
+------------+------------+--------------------+
5454

5555
Code and contribution

docs/releases/0.5.0.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ Features
77
--------
88

99
* Added support for Django 1.11
10+
* Added support for Python 3.6

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
'Programming Language :: Python :: 3.3',
5656
'Programming Language :: Python :: 3.4',
5757
'Programming Language :: Python :: 3.5',
58+
'Programming Language :: Python :: 3.6',
5859
'Topic :: Internet :: WWW/HTTP',
5960
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
6061
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
skipsdist = True
33
usedevelop = True
44

5-
envlist = py{27,33,34,35}-dj{18}, py{27,34,35}-dj{19,110,111}, flake8
5+
envlist = py{27,33,34,35}-dj{18}, py{27,34,35}-dj{19,110,111}, py{36}-dj{111}, flake8
66

77
[flake8]
88
max-line-length = 120
@@ -17,6 +17,7 @@ basepython =
1717
py33: python3.3
1818
py34: python3.4
1919
py35: python3.5
20+
py36: python3.6
2021

2122
deps =
2223
dj18: Django>=1.8,<1.9

0 commit comments

Comments
 (0)