From ab9b084d193f03047e08ec055edc93eb0cf9202b Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Thu, 25 Feb 2021 19:55:55 -0600 Subject: [PATCH] feat: Add support for python 3.9. (#563) Co-authored-by: Elise Shanholtz --- .travis.yml | 1 + README.md | 1 + setup.py | 1 + tox.ini | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2f09d37edb..cb69f1ce82 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ python: - "3.6" - "3.7" - "3.8" + - "3.9" services: - docker install: diff --git a/README.md b/README.md index 1501843496..f1a21605d0 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ This library supports the following Python implementations: * Python 3.6 * Python 3.7 * Python 3.8 +* Python 3.9 ## Installation diff --git a/setup.py b/setup.py index b20a1d1910..671ae753c2 100755 --- a/setup.py +++ b/setup.py @@ -47,6 +47,7 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Communications :: Telephony", diff --git a/tox.ini b/tox.ini index 772c099d75..73258c971a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py3{4,5,6,7,8}, pypy +envlist = py27, py3{4,5,6,7,8,9}, pypy skip_missing_interpreters = true [testenv]