Skip to content

Commit 49e217e

Browse files
HasenpfoteHasenpfote
authored andcommitted
Add support for Python 3.7
1 parent f50d586 commit 49e217e

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ matrix:
88
env: TOXENV=py35
99
- python: 3.6
1010
env: TOXENV=py36
11+
- python: 3.7
12+
env: TOXENV=py37
13+
sudo: required
14+
dist: xenial
1115

1216
install:
1317
- pip install pipenv

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ def _long_description():
3434
'Programming Language :: Python :: 3.4',
3535
'Programming Language :: Python :: 3.5',
3636
'Programming Language :: Python :: 3.6',
37+
'Programming Language :: Python :: 3.7',
3738
'License :: OSI Approved :: MIT License',
3839
'Operating System :: OS Independent',
3940
'Development Status :: 5 - Production/Stable',

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
envlist=
33
py34,
44
py35,
5-
py36
5+
py36,
6+
py37
67

78
[testenv]
89
skip_install=true
@@ -11,6 +12,7 @@ basepython=
1112
py34: python3.4
1213
py35: python3.5
1314
py36: python3.6
15+
py37: python3.7
1416

1517
deps=
1618
pipenv

0 commit comments

Comments
 (0)