File tree Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 1- # -*- coding: utf-8 -*-
2- #
31# python-jose documentation build configuration file, created by
42# sphinx-quickstart on Thu May 7 13:48:43 2015.
53#
Original file line number Diff line number Diff line change 11import binascii
22import json
33import zlib
4+ from collections .abc import Mapping
45from struct import pack
56
6- try :
7- from collections .abc import Mapping # Python 3
8- except ImportError :
9- from collections import Mapping # Python 2, will be deprecated in Python 3.8
10-
117from . import jwk
128from .backends import get_random_bytes
139from .constants import ALGORITHMS , ZIPS
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def get_packages(package):
2222
2323pyasn1 = ["pyasn1" ]
2424extras_require = {
25- "cryptography" : ["cryptography" ],
25+ "cryptography" : ["cryptography>=3.4.0 " ],
2626 "pycrypto" : ["pycrypto >=2.6.0, <2.7.0" ] + pyasn1 ,
2727 "pycryptodome" : ["pycryptodome >=3.3.1, <4.0.0" ] + pyasn1 ,
2828}
You can’t perform that action at this time.
0 commit comments