Skip to content
This repository was archived by the owner on Sep 28, 2020. It is now read-only.

Commit bd3917a

Browse files
committed
Support Python 3.6.
1 parent 0e94586 commit bd3917a

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
language: python
2+
23
python:
4+
- 3.6
35
- 3.5
46
- 3.4
57
- 3.3
68
- 2.7
9+
- pypy
10+
711
install:
812
- pip install -r requirements.txt
913
- pip install codecov
1014
- pip install flake8 pep8-naming flake8-quotes flake8-import-order pylint
15+
1116
before_script:
1217
- flake8 --max-line-length=99 --import-order-style=google --application-import-names=cpplint_junit
1318
- pylint -E cpplint_junit.py test.py
19+
1420
script:
1521
python -Werror -Wignore::DeprecationWarning -m coverage run test.py
22+
1623
after_success:
1724
codecov

cpplint_junit.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
from exitstatus import ExitStatus
1414

15-
__version__ = '1.0.1'
15+
__version__ = '1.1.0'
1616

1717

1818
class CpplintError(object):
@@ -123,5 +123,6 @@ def main(): # pragma: no cover
123123

124124
return ExitStatus.success
125125

126+
126127
if __name__ == '__main__': # pragma: no cover
127128
sys.exit(main())

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
'Programming Language :: Python :: 3.3',
3535
'Programming Language :: Python :: 3.4',
3636
'Programming Language :: Python :: 3.5',
37+
'Programming Language :: Python :: 3.6',
38+
'Programming Language :: Python :: Implementation :: CPython',
39+
'Programming Language :: Python :: Implementation :: PyPy',
3740
'Topic :: Software Development :: Libraries :: Python Modules',
3841
'Topic :: Software Development :: Quality Assurance',
3942
],

0 commit comments

Comments
 (0)