You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OpenSSL recently added a depreciation warning on some internal mothods.
inclusion_connect/oidc_federation/base.py:13: in <module>
from mozilla_django_oidc import auth, views
../.virtualenv/inclusion-connect/lib/python3.11/site-packages/mozilla_django_oidc/auth.py:14: in <module>
from josepy.b64 import b64decode
../.virtualenv/inclusion-connect/lib/python3.11/site-packages/josepy/__init__.py:40: in <module>
from josepy.json_util import (
../.virtualenv/inclusion-connect/lib/python3.11/site-packages/josepy/json_util.py:26: in <module>
from josepy import b64, errors, interfaces, util
../.virtualenv/inclusion-connect/lib/python3.11/site-packages/josepy/util.py:18: in <module>
class ComparableX509:
../.virtualenv/inclusion-connect/lib/python3.11/site-packages/josepy/util.py:26: in ComparableX509
def __init__(self, wrapped: Union[crypto.X509, crypto.X509Req]) -> None:
../.virtualenv/inclusion-connect/lib/python3.11/site-packages/cryptography/utils.py:70: in __getattr__
warnings.warn(obj.message, obj.warning_class, stacklevel=2)
E DeprecationWarning: CSR support in pyOpenSSL is deprecated. You should use the APIs in cryptography.
================================= short test summary info =================================
ERROR tests/oidc_federation/test_peama.py - DeprecationWarning: CSR support in pyOpenSSL is deprecated. You should use the APIs in cryptography.
OpenSSL recently added a depreciation warning on some internal mothods.
Josepy maintainers are thinking about dropping the library (see certbot/josepy#182 (comment) and certbot/certbot#8322 (comment))
Since https://github.com/latchset/jwcrypto seems to have more commits/releases recently I'll try to replace josepy with it in a PR.
EDIT -> done in #542
The text was updated successfully, but these errors were encountered: