diff options
author | David Robertson <davidr@element.io> | 2022-03-10 18:41:46 +0000 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-03-14 18:42:01 +0000 |
commit | 28bec9f1cdb12815bda705fb03407a127157ce94 (patch) | |
tree | 26e488b3f128f6c0b130ffa9bd4be2ba6bd46516 | |
parent | source venc. try again (diff) | |
download | synapse-28bec9f1cdb12815bda705fb03407a127157ce94.tar.xz |
lol got the line wrong
-rwxr-xr-x | .ci/scripts/test_old_deps.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.ci/scripts/test_old_deps.sh b/.ci/scripts/test_old_deps.sh index 043bc04631..fad7b06aaf 100755 --- a/.ci/scripts/test_old_deps.sh +++ b/.ci/scripts/test_old_deps.sh @@ -31,14 +31,12 @@ export VIRTUALENV_NO_DOWNLOAD=1 sed -i \ -e "s/[~>]=/==/g" \ -e "/psycopg2/d" \ - -e "s/pyopenssl==16.0.0/pyopenssl==17.0.0/" \ + -e 's/pyOpenSSL = "==16.0.0"/pyOpenSSL = "==17.0.0"/' \ pyproject.toml # There are almost certainly going to be dependency conflicts there, so I'm going to use plain pip to install rather than poetry. -python3 -m venv venv # Can't install with -e. Error message: # > A "pyproject.toml" file was found, but editable mode currently requires a setup.py based build. -source venv/bin/activate pip install .[all] trial -j 2 tests \ No newline at end of file |