From 28bec9f1cdb12815bda705fb03407a127157ce94 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Thu, 10 Mar 2022 18:41:46 +0000 Subject: [PATCH] lol got the line wrong --- .ci/scripts/test_old_deps.sh | 4 +--- 1 file changed, 1 insertion(+), 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