diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-09-01 16:51:10 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-09-01 16:51:10 +0100 |
commit | 8bab7abddda956b4131d8e4ad04b623c93df02ad (patch) | |
tree | 332afe624d5f591768150738834c09eaed7a9c65 /synapse | |
parent | Print an example "pip install" line for a missing requirement (diff) | |
download | synapse-8bab7abddda956b4131d8e4ad04b623c93df02ad.tar.xz |
Add nacl.bindings to the list of modules checked. Re-arrange import order to check packages after the packages they depend on
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/python_dependencies.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index 387183b50b..e95316720e 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -18,18 +18,18 @@ from distutils.version import LooseVersion logger = logging.getLogger(__name__) REQUIREMENTS = { + "frozendict>=0.4": ["frozendict"], "unpaddedbase64>=1.0.1": ["unpaddedbase64>=1.0.1"], "canonicaljson>=1.0.0": ["canonicaljson>=1.0.0"], "signedjson>=1.0.0": ["signedjson>=1.0.0"], - "Twisted>=15.1.0": ["twisted>=15.1.0"], + "pynacl>=0.3.0": ["nacl>=0.3.0", "nacl.bindings"], "service_identity>=1.0.0": ["service_identity>=1.0.0"], + "Twisted>=15.1.0": ["twisted>=15.1.0"], "pyopenssl>=0.14": ["OpenSSL>=0.14"], "pyyaml": ["yaml"], "pyasn1": ["pyasn1"], - "pynacl>=0.3.0": ["nacl>=0.3.0"], "daemonize": ["daemonize"], "py-bcrypt": ["bcrypt"], - "frozendict>=0.4": ["frozendict"], "pillow": ["PIL"], "pydenticon": ["pydenticon"], "ujson": ["ujson"], |