Skip to content

Commit 1d9e764

Browse files
committed
add support for python 3.5
1 parent d747b12 commit 1d9e764

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
language: python
2-
python: 3.4
2+
python: 3.5
33
env:
4-
- TOX_ENV=pypy
4+
# Avoid testing pypy on travis until the following issue is fixed:
5+
# https://github.com/travis-ci/travis-ci/issues/4756
6+
#- TOX_ENV=pypy
7+
- TOX_ENV=py35
8+
- TOX_ENV=py34
59
- TOX_ENV=py33
610
- TOX_ENV=py32
711
- TOX_ENV=py27

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
'Programming Language :: Python :: 3.2',
4040
'Programming Language :: Python :: 3.3',
4141
'Programming Language :: Python :: 3.4',
42+
'Programming Language :: Python :: 3.5',
4243
'Programming Language :: Python :: Implementation :: PyPy'
4344
),
4445
)

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = pypy,py34,py33,py32,py27,py26,docs
2+
envlist = pypy,py35,py34,py33,py32,py27,py26,docs
33

44
[testenv]
55
commands = coverage run --source=fitbit setup.py test
@@ -8,6 +8,9 @@ deps = -r{toxinidir}/requirements/test.txt
88
[testenv:pypy]
99
basepython = pypy
1010

11+
[testenv:py35]
12+
basepython = python3.5
13+
1114
[testenv:py34]
1215
basepython = python3.4
1316

0 commit comments

Comments
 (0)