Skip to content

Commit 7b3632e

Browse files
committed
Include Python 3.5 as a supported version
1 parent 34af0a1 commit 7b3632e

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ python: 3.3
44
env:
55
- TOX_ENV=py33
66
- TOX_ENV=py34
7+
- TOX_ENV=py35
78

89
install:
910
- pip install tox

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def find_version(*file_paths):
3737
"License :: OSI Approved :: Apache Software License",
3838
"Programming Language :: Python :: 3.3",
3939
"Programming Language :: Python :: 3.4",
40+
"Programming Language :: Python :: 3.5",
4041
"Topic :: Software Development :: Testing",
4142
],
4243
install_requires=[

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py33, py34
2+
envlist = py33, py34, py35
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)