diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-05-03 18:54:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-03 18:54:49 +0100 |
commit | dd76e5ca62aab87fb2d9f7dd10c3f3ee7e55279e (patch) | |
tree | 5808003541998abc2ed7184518f34fb81b043d4c /synapse/python_dependencies.py | |
parent | changelog tweaks (diff) | |
parent | changelog (diff) | |
download | synapse-dd76e5ca62aab87fb2d9f7dd10c3f3ee7e55279e.tar.xz |
Merge pull request #5135 from matrix-org/rav/build_fixes
Build fixes
Diffstat (limited to 'synapse/python_dependencies.py')
-rw-r--r-- | synapse/python_dependencies.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index f71e21ff4d..c75119a030 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -69,6 +69,14 @@ REQUIREMENTS = [ "attrs>=17.4.0", "netaddr>=0.7.18", + + # requests is a transitive dep of treq, and urlib3 is a transitive dep + # of requests, as well as of sentry-sdk. + # + # As of requests 2.21, requests does not yet support urllib3 1.25. + # (If we do not pin it here, pip will give us the latest urllib3 + # due to the dep via sentry-sdk.) + "urllib3<1.25", ] CONDITIONAL_REQUIREMENTS = { |