Skip to content

Commit 44541ef

Browse files
committed
Add testing and document support for Python 3.7
Python 3.7 was released on June 27, 2018. https://docs.python.org/3/whatsnew/3.7.html
1 parent 566cdc0 commit 44541ef

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

+3-1
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

+1
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

+1-1
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)