diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-04-02 18:08:03 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-04-02 18:58:08 +0100 |
commit | ec56620ff66aa06953b2d675e71df177ef7f375d (patch) | |
tree | 39dcd398070419eda92947638f80313ea1695e0c | |
parent | 1.12.1 (diff) | |
download | synapse-ec56620ff66aa06953b2d675e71df177ef7f375d.tar.xz |
Pin Pillow>=4.3.0,<7.1.0 to fix dep issue
-rw-r--r-- | synapse/python_dependencies.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index 8de8cb2c12..3274eb9863 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -61,7 +61,9 @@ REQUIREMENTS = [ "pyasn1-modules>=0.0.7", "daemonize>=2.3.1", "bcrypt>=3.1.0", - "pillow>=4.3.0", + # Pillow 7.1.0 causes the following issue on debian buster: + # https://github.com/python-pillow/Pillow/issues/2377 + "pillow>=4.3.0,<7.1.0", "sortedcontainers>=1.4.4", "pymacaroons>=0.13.0", "msgpack>=0.5.2", |