File tree Expand file tree Collapse file tree 3 files changed +16
-10
lines changed
Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 33import json
44import six
55
6- from collections import Mapping , Iterable
6+ try :
7+ from collections .abc import Mapping , Iterable # Python 3
8+ except ImportError :
9+ from collections import Mapping , Iterable # Python 2, will be deprecated in Python 3.8
710
811from jose import jwk
912from jose .constants import ALGORITHMS
Original file line number Diff line number Diff line change 22import json
33
44from calendar import timegm
5- from collections import Mapping
5+ try :
6+ from collections .abc import Mapping # Python3
7+ except ImportError :
8+ from collections import Mapping # Python2, will be depecrated in Python 3.8
69from datetime import datetime
710from datetime import timedelta
811from six import string_types
Original file line number Diff line number Diff line change 11PyYAML == 3.11
22cov-core == 1.15.0
3- coverage == 3.7.1
4- coveralls == 0.5
3+ coverage == 4.4
4+ coveralls == 1.5.1
5+ cryptography == 2.4.2
56docopt == 0.6.2
67nose == 1.3.6
7- py == 1.4.26
8- pytest == 2.7.0
9- pytest-cov == 1.8.1
10- ecdsa == 0.13
11- wsgiref == 0.1.2
12-
8+ py == 1.5.4
9+ pytest == 4.1.1
10+ pytest-cov == 2.6.1
11+ # wsgiref is included in python standard library in Python 3, and will fail to install.
12+ wsgiref == 0.1.2 ; python_version < "3.0"
1313-r requirements.txt
1414-r requirements-rtd.txt
You can’t perform that action at this time.
0 commit comments