Skip to content

Commit 0502096

Browse files
committed
declare Python 3.7 support; run Python 3.7 tests
1 parent 28a0c23 commit 0502096

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ matrix:
1818
env: TOXENV=py35
1919
- python: 3.6
2020
env: TOXENV=py36
21+
- python: 3.7
22+
env: TOXENV=py37
23+
dist: xenial
24+
sudo: true
2125
install:
2226
- |
2327
if [ "$TOXENV" = "pypy" ]; then

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def has_environment_marker_platform_impl_support():
7272
'Programming Language :: Python :: 3.4',
7373
'Programming Language :: Python :: 3.5',
7474
'Programming Language :: Python :: 3.6',
75+
'Programming Language :: Python :: 3.7',
7576
'Programming Language :: Python :: Implementation :: CPython',
7677
'Programming Language :: Python :: Implementation :: PyPy',
7778
],

tox.ini

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

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)