File tree Expand file tree Collapse file tree 5 files changed +27
-16
lines changed
Expand file tree Collapse file tree 5 files changed +27
-16
lines changed Original file line number Diff line number Diff line change 11language : 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
1718install :
18- - pip install tox
19+ - pip install tox
1920
2021script :
21- tox
22+ tox
Original file line number Diff line number Diff line change @@ -60,6 +60,11 @@ output so that CI tools like Bamboo will not fail on the JUnit task.
6060Releases
6161--------
6262
63+ 1.3.0 - 2016-12-31
64+ ^^^^^^^^^^^^^^^^^^
65+
66+ Support Python 3.6.
67+
63681.2.0 - 2016-07-27
6469^^^^^^^^^^^^^^^^^^
6570
Original file line number Diff line number Diff line change @@ -174,5 +174,6 @@ def main(): # pragma: no cover
174174
175175 return ExitStatus .success
176176
177+
177178if __name__ == '__main__' : # pragma: no cover
178179 sys .exit (main ())
Original file line number Diff line number Diff line change 33
44setup (
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 (),
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 ],
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ envlist =
55 py33
66 py34
77 py35
8+ py36
89 pypy
910
1011[flake8]
You can’t perform that action at this time.
0 commit comments