From 0df7972d16ae548f7fd00f869f793d1bc1b3f592 Mon Sep 17 00:00:00 2001 From: michaeldiamant Date: Thu, 22 Dec 2022 17:21:57 -0500 Subject: [PATCH 1/2] Fix misspelled cryptography package reference --- test/scripts/e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/scripts/e2e.sh b/test/scripts/e2e.sh index b7d04ff4aa..56610b76fb 100755 --- a/test/scripts/e2e.sh +++ b/test/scripts/e2e.sh @@ -121,7 +121,7 @@ if [ -z "$E2E_TEST_FILTER" ] || [ "$E2E_TEST_FILTER" == "SCRIPTS" ]; then python3 -m venv "${TEMPDIR}/ve" . "${TEMPDIR}/ve/bin/activate" "${TEMPDIR}/ve/bin/pip3" install --upgrade pip - "${TEMPDIR}/ve/bin/pip3" install --upgrade cryptograpy + "${TEMPDIR}/ve/bin/pip3" install --upgrade cryptography # Pin a version of our python SDK's so that breaking changes don't spuriously break our tests. # Please update as necessary. From 996bef7bdbef4c4f4e7a8a3b2e92c8f8c067e762 Mon Sep 17 00:00:00 2001 From: michaeldiamant Date: Fri, 23 Dec 2022 09:43:35 -0500 Subject: [PATCH 2/2] Attempt removing cryptography package --- test/scripts/e2e.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/test/scripts/e2e.sh b/test/scripts/e2e.sh index 56610b76fb..5229476709 100755 --- a/test/scripts/e2e.sh +++ b/test/scripts/e2e.sh @@ -121,7 +121,6 @@ if [ -z "$E2E_TEST_FILTER" ] || [ "$E2E_TEST_FILTER" == "SCRIPTS" ]; then python3 -m venv "${TEMPDIR}/ve" . "${TEMPDIR}/ve/bin/activate" "${TEMPDIR}/ve/bin/pip3" install --upgrade pip - "${TEMPDIR}/ve/bin/pip3" install --upgrade cryptography # Pin a version of our python SDK's so that breaking changes don't spuriously break our tests. # Please update as necessary.