Skip to content

Commit faaced4

Browse files
committed
python 3.7 support
1 parent ab8eaa8 commit faaced4

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
---
2+
dist: xenial # required for Python >= 3.7
13
sudo: false
24
language: python
35
python:
46
- "2.7"
57
- "3.4"
68
- "3.5"
79
- "3.6"
10+
- "3.7"
811
- "pypy"
912
install:
1013
- pip install tox-travis coveralls

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@
4444
"Programming Language :: Python :: 2.7",
4545
"Programming Language :: Python :: 3.4",
4646
"Programming Language :: Python :: 3.5",
47-
"Programming Language :: Python :: 3.6"
47+
"Programming Language :: Python :: 3.6",
48+
"Programming Language :: Python :: 3.7"
4849
)
4950

5051
INSTALL_REQUIRES = [

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[tox]
44
minversion = 2.0
5-
envlist = pypy, py27, py34, py35, py36, style, docs
5+
envlist = pypy, py27, py34, py35, py36, py37, style, docs
66
skipsdist=True
77

88
[testenv]

0 commit comments

Comments
 (0)