diff options
author | Dan Callahan <danc@element.io> | 2021-01-29 14:56:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 14:56:04 +0000 |
commit | e19396d62241c5619051e5aa15c9f53e2568fa45 (patch) | |
tree | e22fa79e3815d1ea2f596628bd3730d0086274a2 /debian/build_virtualenv | |
parent | Fix typo in UPGRADE.rst (diff) | |
download | synapse-e19396d62241c5619051e5aa15c9f53e2568fa45.tar.xz |
Fix Debian builds on Xenial (#9254)
Adds note about updating dh-virtualenv once we drop support for Xenial. We can't update now, because it needs debhelper 12, while Xenial only backports 10. Signed-off-by: Dan Callahan <danc@element.io>
Diffstat (limited to 'debian/build_virtualenv')
-rwxr-xr-x | debian/build_virtualenv | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/debian/build_virtualenv b/debian/build_virtualenv index cbdde93f96..cf19084a9f 100755 --- a/debian/build_virtualenv +++ b/debian/build_virtualenv @@ -33,11 +33,13 @@ esac # Use --builtin-venv to use the better `venv` module from CPython 3.4+ rather # than the 2/3 compatible `virtualenv`. +# Pin pip to 20.3.4 to fix breakage in 21.0 on py3.5 (xenial) + dh_virtualenv \ --install-suffix "matrix-synapse" \ --builtin-venv \ --python "$SNAKE" \ - --upgrade-pip \ + --upgrade-pip-to="20.3.4" \ --preinstall="lxml" \ --preinstall="mock" \ --extra-pip-arg="--no-cache-dir" \ |