diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-01-30 11:25:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 11:25:59 +0000 |
commit | 5a246611e3cbf27cf1dd7e4453adc8040cddd6a2 (patch) | |
tree | 549d4432af55704c2c59d687fb4c0eef0ca4c207 /synapse/python_dependencies.py | |
parent | Remove unused DeviceRow class (#6800) (diff) | |
download | synapse-5a246611e3cbf27cf1dd7e4453adc8040cddd6a2.tar.xz |
Type defintions for use in refactoring for redaction changes (#6803)
* Bump signedjson to 1.1 ... so that we can use the type definitions * Fix breakage caused by upgrade to signedjson 1.1 Thanks, @illicitonion...
Diffstat (limited to 'synapse/python_dependencies.py')
-rw-r--r-- | synapse/python_dependencies.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index 5871feaafd..8de8cb2c12 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -1,6 +1,7 @@ # Copyright 2015, 2016 OpenMarket Ltd # Copyright 2017 Vector Creations Ltd # Copyright 2018 New Vector Ltd +# Copyright 2020 The Matrix.org Foundation C.I.C. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -43,7 +44,8 @@ REQUIREMENTS = [ "frozendict>=1", "unpaddedbase64>=1.1.0", "canonicaljson>=1.1.3", - "signedjson>=1.0.0", + # we use the type definitions added in signedjson 1.1. + "signedjson>=1.1.0", "pynacl>=1.2.1", "idna>=2.5", # validating SSL certs for IP addresses requires service_identity 18.1. |