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

Commit d7da924

Browse files
committed
Support Python 3.7 and PyPy3
1 parent 6233c95 commit d7da924

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.travis.yml

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

33
python:
4+
- 3.7
5+
dist: xenial
6+
sudo: true
47
- 3.6
58
- 3.5
69
- 3.4
710
- 3.3
811
- 2.7
912
- pypy
13+
- pypy3
1014

1115
install:
1216
- pip install -r requirements.txt
1317
- pip install codecov
14-
- pip install flake8 pep8-naming flake8-quotes flake8-import-order pylint
18+
- pip install flake8 pep8-naming flake8-quotes flake8-import-order
1519

1620
before_script:
1721
- flake8 --max-line-length=99 --import-order-style=google --application-import-names=cpplint_junit
18-
- pylint -E cpplint_junit.py test.py
1922

2023
script:
2124
python -Werror -Wignore::DeprecationWarning -m coverage run test.py

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
'Programming Language :: Python :: 3.4',
3636
'Programming Language :: Python :: 3.5',
3737
'Programming Language :: Python :: 3.6',
38+
'Programming Language :: Python :: 3.7',
3839
'Programming Language :: Python :: Implementation :: CPython',
3940
'Programming Language :: Python :: Implementation :: PyPy',
4041
'Topic :: Software Development :: Libraries :: Python Modules',

0 commit comments

Comments
 (0)