From 89b9d4aaeb71a4c5bc8ccd056f793a8be7e623c8 Mon Sep 17 00:00:00 2001 From: philsmd Date: Tue, 21 Jul 2020 10:39:38 +0200 Subject: [PATCH] tests: improve install_modules.sh python dependencies --- tools/install_modules.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/install_modules.sh b/tools/install_modules.sh index 33d907aeb..b8c578a3f 100755 --- a/tools/install_modules.sh +++ b/tools/install_modules.sh @@ -63,9 +63,13 @@ cpan install Authen::Passphrase::LANManager \ ERRORS=$((ERRORS+$?)) -pip2 install pygost pycryptoplus +pip2 install pygost +# pip2 uninstall -y pycryptoplus pycrypto pycryptodome + +pip2 install pycryptoplus pip2 uninstall -y pycryptodome +pip2 install pycrypto ERRORS=$((ERRORS+$?))