Skip to content

Commit c1f7466

Browse files
committed
Python 3.7 support
1 parent 02e441f commit c1f7466

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
sudo: false
21
language: python
2+
sudo: required
3+
dist: xenial
34
python:
45
- "2.7"
56
- "3.4"
67
- "3.5"
78
- "3.6"
9+
- "3.7"
810
install:
911
- pip install tox-travis codecov
1012
script:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,6 @@ def read_file(filename, encoding='utf8'):
4545
'Programming Language :: Python :: 3.4',
4646
'Programming Language :: Python :: 3.5',
4747
'Programming Language :: Python :: 3.6',
48+
'Programming Language :: Python :: 3.7',
4849
],
4950
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py27
4-
py3{4,5,6}
4+
py3{4,5,6,7}
55

66
[testenv]
77
deps=

0 commit comments

Comments
 (0)