Skip to content

Commit

Permalink
Document support for Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
wbond committed Aug 23, 2023
1 parent b3eaa6d commit 1547f53
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Some downsides include:
## Dependencies

- [*asn1crypto*](https://github.com/wbond/asn1crypto)
- 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
- 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
- OpenSSL/LibreSSL if on Linux¹

*¹ 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.*
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def run(self):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: PyPy',

'Topic :: Security :: Cryptography',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py32,py33,py34,py35,py36,py37,py38,py39,py310,pypy
envlist = py26,py27,py32,py33,py34,py35,py36,py37,py38,py39,py310,py311,pypy

[testenv]
deps = -rrequires/ci
Expand Down

0 comments on commit 1547f53

Please sign in to comment.