erikj/paginate_sync
Erik Johnston 2016-06-27 13:25:44 +01:00
parent 4c67e06dfb
commit f07f99387e
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ REQUIREMENTS = {
"blist": ["blist"],
"pysaml2>=3.0.0,<4.0.0": ["saml2>=3.0.0,<4.0.0"],
"pymacaroons-pynacl": ["pymacaroons"],
"msgpack-python": ["msgpack"],
"cbor2": ["cbor2"],
}
CONDITIONAL_REQUIREMENTS = {
"web_client": {

View File

@ -18,7 +18,7 @@ from synapse.api.errors import SynapseError
from collections import namedtuple
from unpaddedbase64 import encode_base64, decode_base64
import ujson as serializer
import cbor2 as serializer
Requester = namedtuple("Requester", ["user", "access_token_id", "is_guest"])