Skip to content

Commit eadbcba

Browse files
Jamimchildish-sambino
authored andcommitted
Declare support for Python 3.8 (#486)
Python 3.8 is there, so I believe that it would be nice to declare support and add tests for it on CI. Python 3.8.0 release announcement: https://discuss.python.org/t/python-3-8-0-is-now-available/2478
1 parent 04deb12 commit eadbcba

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ python:
66
- "3.5"
77
- "3.6"
88
- "3.7"
9+
- "3.8"
910
services:
1011
- docker
1112
install:

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
"Programming Language :: Python :: 3.5",
5151
"Programming Language :: Python :: 3.6",
5252
"Programming Language :: Python :: 3.7",
53+
"Programming Language :: Python :: 3.8",
54+
"Programming Language :: Python :: Implementation :: CPython",
5355
"Topic :: Software Development :: Libraries :: Python Modules",
5456
"Topic :: Communications :: Telephony",
5557
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
2-
envlist = py27, py33, py34, py35, py36, pypy
2+
envlist = py27, py3{4,5,6,7,8}, pypy
3+
skip_missing_interpreters = true
34

45
[testenv]
56
deps= -r{toxinidir}/tests/requirements.txt

0 commit comments

Comments
 (0)