Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.

Commit 035157b

Browse files
committed
Support Python 3.7 and PyPy3
1 parent 69c16c0 commit 035157b

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,14 @@ matrix:
1212
env: TOXENV=py35
1313
- python: 3.6
1414
env: TOXENV=py36
15+
- python: 3.7
16+
env: TOXENV=py37
17+
dist: xenial
18+
sudo: true
1519
- python: pypy
1620
env: TOXENV=pypy
21+
- python: pypy3
22+
env: TOXENV=pypy3
1723

1824
install:
1925
- pip install tox

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
'Programming Language :: Python :: 3.4',
3434
'Programming Language :: Python :: 3.5',
3535
'Programming Language :: Python :: 3.6',
36+
'Programming Language :: Python :: 3.7',
3637
'Programming Language :: Python :: Implementation :: CPython',
3738
'Programming Language :: Python :: Implementation :: PyPy',
3839
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ envlist =
66
py34
77
py35
88
py36
9+
py37
910
pypy
11+
pypy3
1012

1113
[flake8]
1214
max-line-length = 99

0 commit comments

Comments
 (0)