Skip to content

Commit 85a26f6

Browse files
committed
Support Python 3.6.
1 parent 51c73e8 commit 85a26f6

File tree

5 files changed

+27
-16
lines changed

5 files changed

+27
-16
lines changed

.travis.yml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
language: python
22

3-
# Python 3.5 specified to make tox environment 'py35' work.
4-
# See: https://github.com/travis-ci/travis-ci/issues/4794
5-
python:
6-
- 3.5
7-
8-
# Environment changes have to be manually synced with 'tox.ini'.
9-
# See: https://github.com/travis-ci/travis-ci/issues/3024
10-
env:
11-
- TOXENV=py27
12-
- TOXENV=py33
13-
- TOXENV=py34
14-
- TOXENV=py35
15-
- TOXENV=pypy
3+
matrix:
4+
include:
5+
- python: 2.7
6+
env: TOXENV=py27
7+
- python: 3.3
8+
env: TOXENV=py33
9+
- python: 3.4
10+
env: TOXENV=py34
11+
- python: 3.5
12+
env: TOXENV=py35
13+
- python: 3.6
14+
env: TOXENV=py36
15+
- python: pypy
16+
env: TOXENV=pypy
1617

1718
install:
18-
- pip install tox
19+
- pip install tox
1920

2021
script:
21-
tox
22+
tox

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ output so that CI tools like Bamboo will not fail on the JUnit task.
6060
Releases
6161
--------
6262

63+
1.3.0 - 2016-12-31
64+
^^^^^^^^^^^^^^^^^^
65+
66+
Support Python 3.6.
67+
6368
1.2.0 - 2016-07-27
6469
^^^^^^^^^^^^^^^^^^
6570

cppcheck_junit.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,5 +174,6 @@ def main(): # pragma: no cover
174174

175175
return ExitStatus.success
176176

177+
177178
if __name__ == '__main__': # pragma: no cover
178179
sys.exit(main())

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='cppcheck-junit',
6-
version='1.2.0',
6+
version='1.3.0',
77

88
description='Converts Cppcheck XML output to JUnit format.',
99
long_description=open('README.rst').read(),
@@ -32,6 +32,9 @@
3232
'Programming Language :: Python :: 3.3',
3333
'Programming Language :: Python :: 3.4',
3434
'Programming Language :: Python :: 3.5',
35+
'Programming Language :: Python :: 3.6',
36+
'Programming Language :: Python :: Implementation :: CPython',
37+
'Programming Language :: Python :: Implementation :: PyPy',
3538
'Topic :: Software Development :: Libraries :: Python Modules',
3639
'Topic :: Software Development :: Quality Assurance',
3740
],

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ envlist =
55
py33
66
py34
77
py35
8+
py36
89
pypy
910

1011
[flake8]

0 commit comments

Comments
 (0)