Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion debian/build_virtualenv
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ esac
# than the 2/3 compatible `virtualenv`.

dh_virtualenv \
--install-suffix "matrix-synapse" \
--install-suffix "matrix-synapse[debian]" \
--builtin-venv \
--setuptools \
--python "$SNAKE" \
Expand Down
7 changes: 4 additions & 3 deletions synapse/python_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,7 @@
"pyasn1-modules>=0.0.7",
"daemonize>=2.3.1",
"bcrypt>=3.1.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",
"pillow>=4.3.0",
"sortedcontainers>=1.4.4",
"pymacaroons>=0.13.0",
"msgpack>=0.5.2",
Expand Down Expand Up @@ -100,6 +98,9 @@
"sentry": ["sentry-sdk>=0.7.2"],
"opentracing": ["jaeger-client>=4.0.0", "opentracing>=2.2.0"],
"jwt": ["pyjwt>=1.6.4"],
# Pillow 7.1.0 causes the following issue on debian buster:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

More than just buster was affected, it was just the first to report an error.

# https://github.com/python-pillow/Pillow/issues/2377
"debian": ["pillow>=4.3.0,<7.1.0"],
}

ALL_OPTIONAL_REQUIREMENTS = set() # type: Set[str]
Expand Down