Skip to content

Commit 88151f3

Browse files
committed
Merge branch 'hugovk-add-3.7' into develop
PR #176. * hugovk-add-3.7: Add support for Python 3.7
2 parents b573a02 + 4a3e428 commit 88151f3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ python:
77
- "3.5"
88
- "3.6"
99
- "pypy"
10+
# Enable 3.7 without globally enabling dist: xenial for other build jobs
11+
matrix:
12+
include:
13+
- python: "3.7"
14+
dist: xenial
1015
before_install:
1116
- pip install codecov
1217
install:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22

3-
import os
4-
import sys
53
import io
64

75
from setuptools import setup, find_packages
@@ -32,6 +30,7 @@
3230
'Programming Language :: Python :: 3.4',
3331
'Programming Language :: Python :: 3.5',
3432
'Programming Language :: Python :: 3.6',
33+
'Programming Language :: Python :: 3.7',
3534
'Programming Language :: Python :: Implementation :: CPython',
3635
'Programming Language :: Python :: Implementation :: PyPy',
3736
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26,py27,py33,py34,py35,py36,pypy
2+
envlist = py26,py27,py33,py34,py35,py36,py37,pypy
33

44
[testenv]
55
commands = nosetests

0 commit comments

Comments
 (0)