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

Commit 5c81e65

Browse files
authored
We support Python 3.6 (#371)
Closes #306.
1 parent 4486fc6 commit 5c81e65

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,20 @@ matrix:
117117
- python: 3.5
118118
env: TOX_ENV=py35-django1.11-drf3.6
119119

120+
- python: 3.6
121+
env: TOX_ENV=py36-django1.10-drf3.4
122+
- python: 3.6
123+
env: TOX_ENV=py36-django1.10-drf3.5
124+
- python: 3.6
125+
env: TOX_ENV=py36-django1.10-drf3.6
126+
127+
- python: 3.6
128+
env: TOX_ENV=py36-django1.11-drf3.4
129+
- python: 3.6
130+
env: TOX_ENV=py36-django1.11-drf3.5
131+
- python: 3.6
132+
env: TOX_ENV=py36-django1.11-drf3.6
133+
120134
install:
121135
- pip install tox
122136

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you want to know more about JWT, check out the following resources:
2222
Requirements
2323
------------
2424

25-
- Python (2.7, 3.3, 3.4, 3.5)
25+
- Python (2.7, 3.3, 3.4, 3.5, 3.6)
2626
- Django (1.8, 1.9, 1.10, 1.11)
2727
- Django REST Framework (3.1, 3.2, 3.3, 3.4, 3.5, 3.6)
2828

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If you want to know more about JWT, check out the following resources:
2727

2828
## Requirements
2929

30-
- Python (2.7, 3.3, 3.4, 3.5)
30+
- Python (2.7, 3.3, 3.4, 3.5, 3.6)
3131
- Django (1.8, 1.9, 1.10)
3232
- Django REST Framework (3.0, 3.1, 3.2, 3.3, 3.4, 3.5)
3333

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ def get_package_data(package):
105105
'Programming Language :: Python :: 3.3',
106106
'Programming Language :: Python :: 3.4',
107107
'Programming Language :: Python :: 3.5',
108+
'Programming Language :: Python :: 3.6',
108109
'Topic :: Internet :: WWW/HTTP',
109110
]
110111
)

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py27-{flake8,docs},
4-
{py27,py33,py34,py35}-django{1.8,1.9,1.10,1.11}-drf{3.1,3.2,3.3,3.4,3.5,3.6}
4+
{py27,py33,py34,py35,py36}-django{1.8,1.9,1.10,1.11}-drf{3.1,3.2,3.3,3.4,3.5,3.6}
55

66
[testenv]
77
commands = ./runtests.py --fast {posargs} --verbose

0 commit comments

Comments
 (0)