summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2019-01-02 07:17:39 +0000
committerGitHub <noreply@github.com>2019-01-02 07:17:39 +0000
commit7134832c017fab1e4e6b90df9ad39dd618656427 (patch)
treeb1593c4d2a9c75ac373a1523b4d8ee57503c79dc /changelog.d
parentRemove v1 only REST APIs now we don't ship matrix console (#4334) (diff)
downloadsynapse-7134832c017fab1e4e6b90df9ad39dd618656427.tar.xz
Install the optional dependencies into the debian package (#4325)
since #4298, the optional dependencies are no longer installed with a simple
`pip install .`, which meant that they were not being included in the debian
package.

The easy fix to that is dh_virtualenv --extras, but that needs dh_virtualenv
1.1...
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/4325.feature1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/4325.feature b/changelog.d/4325.feature
new file mode 100644
index 0000000000..05ad70fe72
--- /dev/null
+++ b/changelog.d/4325.feature
@@ -0,0 +1 @@
+Synapse can now have its conditional/extra dependencies installed by pip. This functionality can be used by using `pip install matrix-synapse[feature]`, where feature is a comma separated list with the possible values "email.enable_notifs", "ldap3", "postgres", "saml2", "url_preview", and "test". If you want to install all optional dependencies, you can use "all" instead.