Merge pull request #3351 from philsmd/update_install_modules

update tools/install_modules.sh (test deps)
pull/3354/head
Jens Steube 2 years ago committed by GitHub
commit 96072dbc61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -70,14 +70,23 @@ ERRORS=$((ERRORS+$?))
pip3 install pygost
ERRORS=$((ERRORS+$?))
# pip3 uninstall -y pycryptoplus pycrypto pycryptodome
pip3 install pycryptoplus
ERRORS=$((ERRORS+$?))
# pip3 uninstall -y pycryptodome # latest versions do not require this work around anymore
pip3 install pycrypto
ERRORS=$((ERRORS+$?))
pip3 install cryptography
ERRORS=$((ERRORS+$?))
php --version > /dev/null 2> /dev/null
if [ "$?" -ne 0 ]

Loading…
Cancel
Save