From 058bbbaa3cb89c4a4764f335ce57f451e550e66e Mon Sep 17 00:00:00 2001 From: Dmitri Bogomolov <4glitch@gmail.com> Date: Tue, 22 May 2018 14:24:24 +0300 Subject: [PATCH] msgpack is optional dependency --- src/depends.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/depends.py b/src/depends.py index b39b2760..5e489f8c 100755 --- a/src/depends.py +++ b/src/depends.py @@ -435,10 +435,9 @@ def check_dependencies(verbose=False, optional=False): ' or greater is required.') has_all_dependencies = False - check_functions = [ - check_hashlib, check_sqlite, check_openssl, check_msgpack] + check_functions = [check_hashlib, check_sqlite, check_openssl] if optional: - check_functions.extend([check_pyqt, check_curses]) + check_functions.extend([check_msgpack, check_pyqt, check_curses]) # Unexpected exceptions are handled here for check in check_functions: