diff options
author | David Robertson <davidr@element.io> | 2022-03-11 15:35:24 +0000 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-03-14 18:42:02 +0000 |
commit | c5a7465a1a1db927bc49befa93c70e116d8185eb (patch) | |
tree | a11c63c8b3f0be8aeb2cf1ab65dcefec9ec608a0 /.ci | |
parent | lock? (diff) | |
download | synapse-c5a7465a1a1db927bc49befa93c70e116d8185eb.tar.xz |
sod off, baldrick
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/scripts/test_old_deps.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.ci/scripts/test_old_deps.sh b/.ci/scripts/test_old_deps.sh index 154f2cffd4..989d030650 100755 --- a/.ci/scripts/test_old_deps.sh +++ b/.ci/scripts/test_old_deps.sh @@ -29,11 +29,14 @@ export VIRTUALENV_NO_DOWNLOAD=1 # - OpenSSL 1.1 compiled cryptography (as older ones don't compile on Travis). # - remove pygithub from dev dependencies, because this wants a higher version of # pynacl than our minimum and we're not using it here +# - remove systemd-python. This used to be omitted when running `python_dependencies.py` +# as a script; we preserve this behaviour here. sed -i-backup \ -e "s/[~>]=/==/g" \ -e "/psycopg2/d" \ -e 's/pyOpenSSL = "==16.0.0"/pyOpenSSL = "==17.0.0"/' \ -e '/pygithub/d' \ + -e '/systemd/d' \ pyproject.toml # There are almost certainly going to be dependency conflicts there, so I'm going to |