Skip to content
This repository was archived by the owner on Apr 20, 2025. It is now read-only.

Commit b81e317

Browse files
hugovksybrenstuvel
authored andcommitted
Declare support for and test Python 3.9
1 parent 06ec1ea commit b81e317

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ python:
99
- "3.6"
1010
- "3.7"
1111
- "3.8"
12+
- "3.9"
1213

1314
matrix:
1415
include:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
[#164](https://github.com/sybrenstuvel/python-rsa/issues/164))
1010
- Reuse of blinding factors to speed up blinding operations.
1111
Fixes [#162](https://github.com/sybrenstuvel/python-rsa/issues/162).
12+
- Declare & test support for Python 3.9
1213

1314

1415
## Version 4.4 & 4.6 - released 2020-06-12

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
'Programming Language :: Python :: 3.6',
5050
'Programming Language :: Python :: 3.7',
5151
'Programming Language :: Python :: 3.8',
52+
'Programming Language :: Python :: 3.9',
5253
'Programming Language :: Python :: Implementation :: CPython',
5354
'Programming Language :: Python :: Implementation :: PyPy',
5455
'Topic :: Security :: Cryptography',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
# Environment changes have to be manually synced with '.travis.yml'.
3-
envlist = py35,py36,p37,p38
3+
envlist = py35,py36,p37,p38,p39
44

55
[pytest]
66
addopts = -v --cov rsa --cov-report term-missing

0 commit comments

Comments
 (0)