Skip to content

Commit 0616935

Browse files
committed
Memorialize Python 3.7 support
Add Python 3.7 to classifiers in setup.py and to tox and travis configurations. Signed-off-by: Peter Grayson <[email protected]>
1 parent ccff005 commit 0616935

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,20 @@ matrix:
1717
- python: '3.5'
1818
env: MAKE_TARGET=test
1919
- python: '3.6'
20+
env: MAKE_TARGET=test
21+
- python: '3.7'
2022
env: MAKE_TARGET=coverage-test
23+
dist: xenial
2124
- python: 'pypy3'
2225
env: MAKE_TARGET=test
26+
- python: '3.8-dev'
27+
env: MAKE_TARGET=test
28+
dist: xenial
2329
- python: 'nightly'
30+
dist: xenial
2431
env: MAKE_TARGET=test
2532
allow_failures:
33+
- python: '3.8-dev'
2634
- python: 'nightly'
2735
- python: '2.6'
2836

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ def __check_git_version():
105105
'Programming Language :: Python :: 3.4',
106106
'Programming Language :: Python :: 3.5',
107107
'Programming Language :: Python :: 3.6',
108+
'Programming Language :: Python :: 3.7',
108109
'Programming Language :: Python :: Implementation :: CPython',
109110
'Programming Language :: Python :: Implementation :: PyPy',
110111
'Topic :: Software Development :: Version Control',

tox.ini

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

55
[testenv]

0 commit comments

Comments
 (0)