Skip to content

Commit 1547f53

Browse files
committed
Document support for Python 3.11
1 parent b3eaa6d commit 1547f53

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Some downsides include:
201201
## Dependencies
202202

203203
- [*asn1crypto*](https://github.com/wbond/asn1crypto)
204-
- Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10 or pypy
204+
- Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11 or pypy
205205
- OpenSSL/LibreSSL if on Linux¹
206206

207207
*¹ On Linux, `ctypes.util.find_library()` is used to located OpenSSL. Alpine Linux does not have an appropriate install by default for `find_library()` to work properly. Instead, `oscrypto.use_openssl()` must be called with the path to the OpenSSL shared libraries.*

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ def run(self):
139139
'Programming Language :: Python :: 3.8',
140140
'Programming Language :: Python :: 3.9',
141141
'Programming Language :: Python :: 3.10',
142+
'Programming Language :: Python :: 3.11',
142143
'Programming Language :: Python :: Implementation :: PyPy',
143144

144145
'Topic :: Security :: Cryptography',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26,py27,py32,py33,py34,py35,py36,py37,py38,py39,py310,pypy
2+
envlist = py26,py27,py32,py33,py34,py35,py36,py37,py38,py39,py310,py311,pypy
33

44
[testenv]
55
deps = -rrequires/ci

0 commit comments

Comments
 (0)