From 69d8fdef9915127f016eb6424322a149cdff25d7 Mon Sep 17 00:00:00 2001 From: m-picc <105937591+m-picc@users.noreply.github.com> Date: Sun, 5 Jun 2022 09:24:32 -0400 Subject: [PATCH] Specify b2sdk version 1.14.1 (#2125) pin b2sdk version to 1.14.1 to resolve exception that occurs when attempting to use backblaze backups. See https://github.com/mail-in-a-box/mailinabox/issues/2124 for details. --- setup/management.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/management.sh b/setup/management.sh index 8dc64f3b..40d0a7eb 100755 --- a/setup/management.sh +++ b/setup/management.sh @@ -30,7 +30,7 @@ apt_install duplicity python-pip virtualenv certbot rsync # b2sdk is used for backblaze backups. # boto is used for amazon aws backups. # Both are installed outside the pipenv, so they can be used by duplicity -hide_output pip3 install --upgrade b2sdk boto +hide_output pip3 install --upgrade b2sdk==1.14.1 boto # Create a virtualenv for the installation of Python 3 packages # used by the management daemon.