diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-06-06 17:12:41 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-06-06 17:12:41 +0100 |
commit | 57e3f923d2253576c303f19c869fc2f252dcca94 (patch) | |
tree | 743ed521bd8dd520607985ba179d75f464b7a968 /synapse | |
parent | Merge pull request #3347 from krombel/py3_extend_tox_2 (diff) | |
download | synapse-57e3f923d2253576c303f19c869fc2f252dcca94.tar.xz |
Add missing dependency on attr
We've rcently added a dep on `attr`. I don't know why the CI didn't pick this up, but we should make it explicit anyway.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/python_dependencies.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index 001c798fe3..faf6dfdb8d 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -57,6 +57,7 @@ REQUIREMENTS = { "phonenumbers>=8.2.0": ["phonenumbers"], "six": ["six"], "prometheus_client": ["prometheus_client"], + "attr": ["attr"], } CONDITIONAL_REQUIREMENTS = { |