diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2019-01-23 19:39:06 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-23 19:39:06 +1100 |
commit | 6129e52f437c2e03b711453434924e170f3d11bf (patch) | |
tree | aaf12666831bdf6a7ebb1ead7840f22528b00f13 /synapse/python_dependencies.py | |
parent | Merge pull request #4434 from matrix-org/erikj/fix_user_ips_dedup (diff) | |
download | synapse-6129e52f437c2e03b711453434924e170f3d11bf.tar.xz |
Support ACME for certificate provisioning (#4384)
Diffstat (limited to 'synapse/python_dependencies.py')
-rw-r--r-- | synapse/python_dependencies.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index 882e844eb1..756721e304 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -79,6 +79,10 @@ CONDITIONAL_REQUIREMENTS = { # ConsentResource uses select_autoescape, which arrived in jinja 2.9 "resources.consent": ["Jinja2>=2.9"], + # ACME support is required to provision TLS certificates from authorities + # that use the protocol, such as Let's Encrypt. + "acme": ["txacme>=0.9.2"], + "saml2": ["pysaml2>=4.5.0"], "url_preview": ["lxml>=3.5.0"], "test": ["mock>=2.0"], |