From 15d66579c62aae299929eaae19fc4fb958d1673d Mon Sep 17 00:00:00 2001 From: Swann Martinez Date: Sun, 7 Aug 2022 14:36:36 +0200 Subject: [PATCH] fix: deepdiff dependency error, freezing it to 5.7.0. --- multi_user/environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multi_user/environment.py b/multi_user/environment.py index a748cbc..79e57cc 100644 --- a/multi_user/environment.py +++ b/multi_user/environment.py @@ -31,7 +31,7 @@ DEFAULT_CACHE_DIR = os.path.join( os.path.dirname(os.path.abspath(__file__)), "cache") REPLICATION_DEPENDENCIES = { "zmq", - "deepdiff" + "deepdiff==5.7.0" } LIBS = os.path.join(os.path.dirname(os.path.abspath(__file__)), "libs") REPLICATION = os.path.join(LIBS,"replication")