From 13bd1aee4f40c46d4320725da2e0772fe1bd1c9e Mon Sep 17 00:00:00 2001 From: Martin Winkler Date: Tue, 20 Sep 2022 21:42:14 +0200 Subject: [PATCH] matrix - fixed version for bcrypt and cryptography to prevent rust as dependency --- seqs/matrix.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/seqs/matrix.sh b/seqs/matrix.sh index 1aeb97e..5ba3957 100755 --- a/seqs/matrix.sh +++ b/seqs/matrix.sh @@ -102,7 +102,9 @@ step_4() { enableErrorCheck exe pip install --upgrade pip exe pip install --upgrade setuptools - exe pip install matrix-synapse[postgres,lxml,psycopg2,hiredis,txredisapi] #lxml psycopg2 + # bcrypt and cryptography last version before requiring rust to compile + # hiredis and txredisapi needed by redis + exe pip install bcrypt==3.2.2 cryptography==37.0.4 matrix-synapse[postgres] lxml psycopg2 hiredis txredisapi } step_5_info() { echo "Create default configuration and folder structure"; }