Skip to content

Commit a73a3a9

Browse files
authored
Merge pull request #63 from scrapinghub/py36
Add tests for python 3.6
2 parents 1ba0d23 + a8b345e commit a73a3a9

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ matrix:
1111
env: TOXENV=py34
1212
- python: 3.5
1313
env: TOXENV=py35
14+
- python: 3.6
15+
env: TOXENV=py36
1416
install:
1517
- pip install -U tox coverage codecov pytest-xdist
1618
script:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
'Programming Language :: Python :: 3.3',
3838
'Programming Language :: Python :: 3.4',
3939
'Programming Language :: Python :: 3.5',
40+
'Programming Language :: Python :: 3.6',
4041
'Programming Language :: Python :: Implementation :: CPython',
4142
'Programming Language :: Python :: Implementation :: PyPy',
4243
'Topic :: Internet :: WWW/HTTP',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, pypy, py33, py34, py35
7+
envlist = py27, pypy, py33, py34, py35, py36
88

99
[testenv]
1010
deps =

0 commit comments

Comments
 (0)