Skip to content

Commit b18aea9

Browse files
committed
Document support and test on Python 3.6
1 parent 8d23a12 commit b18aea9

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ matrix:
66
- { python: '2.7', env: TOXENV=py27 }
77
- { python: '3.4', env: TOXENV=py34 }
88
- { python: '3.5', env: TOXENV=py35 }
9+
- { python: '3.6', env: TOXENV=py36 }
910
- { python: 'pypy', env: TOXENV=pypy }
1011
- { python: 'pypy3', env: TOXENV=pypy3 }
1112

1213
# Report coverage for the latest Python 2 and 3 versions, and for PyPy,
1314
# to cover all the interesting code paths.
1415
- { python: '2.7', env: TOXENV=py27-codecov }
15-
- { python: '3.5', env: TOXENV=py35-codecov }
16+
- { python: '3.6', env: TOXENV=py36-codecov }
1617
- { python: 'pypy', env: TOXENV=pypy-codecov }
1718

1819
allow_failures:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ under the backports_ namespace.
2727
Supported Python versions
2828
=========================
2929

30-
* CPython: 2.7, 3.4, 3.5
30+
* CPython: 2.7, 3.4, 3.5, 3.6
3131
* PyPy
3232

3333

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
'Programming Language :: Python :: 3',
2626
'Programming Language :: Python :: 3.4',
2727
'Programming Language :: Python :: 3.5',
28+
'Programming Language :: Python :: 3.6',
2829
'Programming Language :: Python :: Implementation :: PyPy',
2930
'Topic :: Software Development :: Libraries :: Python Modules',
3031
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# See: https://github.com/codecov/codecov-python#using-tox
88

99
[tox]
10-
envlist = py{27,34,35,py}
10+
envlist = py{27,34,35,36,py}
1111

1212
[testenv]
1313
passenv = TOXENV CI TRAVIS TRAVIS_*

0 commit comments

Comments
 (0)