Skip to content

Commit d055c42

Browse files
committed
Add support for python 3.9
Python 3.9 is released on October 5-th 2020 and it seems logical to add support for it. For reference read: https://docs.python.org/3/whatsnew/3.9.html Signed-off-by: Martin Vrachev <mvrachev@vmware.com>
1 parent a88a5bd commit d055c42

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ matrix:
2020
env: TOXENV=py37
2121
- python: "3.8"
2222
env: TOXENV=py38
23+
- python: "3.9"
24+
env: TOXENV=py39
2325
- python: "3.8"
2426
env: TOXENV=with-sslib-master
2527
- python: "3.8"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
'Programming Language :: Python :: 3.6',
105105
'Programming Language :: Python :: 3.7',
106106
'Programming Language :: Python :: 3.8',
107+
'Programming Language :: Python :: 3.9',
107108
'Programming Language :: Python :: Implementation :: CPython',
108109
'Topic :: Security',
109110
'Topic :: Software Development'

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = lint,py{27,35,36,37,38}
7+
envlist = lint,py{27,35,36,37,38,39}
88
skipsdist = true
99

1010
[testenv]

0 commit comments

Comments
 (0)