diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-10-19 21:49:26 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-10-19 21:51:15 +0100 |
commit | e5b52d0f945962a5f4bef5e7a2fb6445dfc0d8f8 (patch) | |
tree | 8a684a1da975835ca013874dbc28ec80d7da3762 /synapse/python_dependencies.py | |
parent | Merge branch 'rav/fix_email_templates_4065' into develop (diff) | |
download | synapse-e5b52d0f945962a5f4bef5e7a2fb6445dfc0d8f8.tar.xz |
Make psutil an explicit dependency
As of #4027, we require psutil to be installed, so it should be in our dependency list. We can also remove some of the conditional import code introduced by #992. Fixes #4062.
Diffstat (limited to 'synapse/python_dependencies.py')
-rw-r--r-- | synapse/python_dependencies.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index f51184b50d..943876456b 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -53,6 +53,7 @@ REQUIREMENTS = { "pillow>=3.1.2": ["PIL"], "pydenticon>=0.2": ["pydenticon"], "sortedcontainers>=1.4.4": ["sortedcontainers"], + "psutil>=2.0.0": ["psutil>=2.0.0"], "pysaml2>=3.0.0": ["saml2"], "pymacaroons-pynacl>=0.9.3": ["pymacaroons"], "msgpack-python>=0.4.2": ["msgpack"], @@ -79,9 +80,6 @@ CONDITIONAL_REQUIREMENTS = { "matrix-synapse-ldap3": { "matrix-synapse-ldap3>=0.1": ["ldap_auth_provider"], }, - "psutil": { - "psutil>=2.0.0": ["psutil>=2.0.0"], - }, "postgres": { "psycopg2>=2.6": ["psycopg2"] } |