Skip to content

Commit ccdaf5d

Browse files
authored
Merge pull request #794 from jdufresne/py37
Add testing and document support for Python 3.7
2 parents 77ad772 + 44541ef commit ccdaf5d

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
@@ -14,8 +14,10 @@ matrix:
1414
env: TOXENV=py35
1515
- python: 3.6
1616
env: TOXENV=py36
17-
- python: nightly
17+
- python: 3.7
1818
env: TOXENV=py37
19+
dist: xenial
20+
sudo: true
1921
- python: pypy
2022
env: TOXENV=pypy
2123
- python: 3.5

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def get_long_description():
5757
'Programming Language :: Python :: 3.4',
5858
'Programming Language :: Python :: 3.5',
5959
'Programming Language :: Python :: 3.6',
60+
'Programming Language :: Python :: 3.7',
6061
'Programming Language :: Python :: Implementation :: CPython',
6162
'Programming Language :: Python :: Implementation :: PyPy',
6263
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, py34, py35, py36, pypy, pypy3, jython
7+
envlist = py27, py34, py35, py36, py37, pypy, pypy3, jython
88
skipsdist = True
99
skip_missing_interpreters = True
1010

0 commit comments

Comments
 (0)