Skip to content

Commit

Permalink
Declare support for Python 3.8 (#486)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Jamim authored and childish-sambino committed Oct 17, 2019
1 parent 04deb12 commit eadbcba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
services:
- docker
install:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Telephony",
],
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tox]
envlist = py27, py33, py34, py35, py36, pypy
envlist = py27, py3{4,5,6,7,8}, pypy
skip_missing_interpreters = true

[testenv]
deps= -r{toxinidir}/tests/requirements.txt
Expand Down

0 comments on commit eadbcba

Please sign in to comment.