Skip to content

Commit b6442c3

Browse files
committed
Bump versions for testing to latest tornado and python; add py3.5 classifier for pypi
1 parent fb827fa commit b6442c3

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ python:
33
- "2.7"
44
- "3.3"
55
- "3.4"
6+
- "3.5"
67
env:
7-
- TORNADO_VERSION=3.1.1
8-
- TORNADO_VERSION=4.0.2
8+
- TORNADO_VERSION=3.2.2
9+
- TORNADO_VERSION=4.4.2
910
install:
1011
- "pip install -r requirements.txt"
1112
- "pip install tornado>=$TORNADO_VERSION"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def run_tests(self):
5656
"Programming Language :: Python :: 2.7",
5757
"Programming Language :: Python :: 3.3",
5858
"Programming Language :: Python :: 3.4",
59+
"Programming Language :: Python :: 3.5",
5960
"Topic :: Software Development :: Libraries :: Application Frameworks",
6061
]
6162
)

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tox]
2-
envlist = {py27,py35}-tornado{311,402}
2+
envlist = {py27,py35}-tornado{3,4}
33

44
[testenv]
55
deps=
66
pytest
77
pytest-cov
8-
tornado311: tornado==3.1.1
9-
tornado402: tornado>=4.0.2
8+
tornado3: tornado==3.2.2
9+
tornado4: tornado>=4.4.2
1010
jsonschema
1111

1212
commands=

0 commit comments

Comments
 (0)