From a1200daf87bdd37d218a651079df27cd6a625e1c Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Mon, 9 Jan 2023 15:32:49 -0800 Subject: [PATCH] sonic-host-services: Pin deepdiff to version 6.2.2 (#13310) The deepdiff python package was recently updated to 6.2.3. As part of this, a dependency was introduced on orjson. There's no armv8l python wheel available for orjson, which means it needs to be built from source. However, building it requires rust (which Buster and Bullseye don't have a new enough version of) and maturin. As a quick fix, pin this to version 6.2.2, before the orjson dependency is introduced. Signed-off-by: Saikrishna Arcot Signed-off-by: Saikrishna Arcot --- src/sonic-host-services/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sonic-host-services/setup.py b/src/sonic-host-services/setup.py index 9ed9e1082a..29edb498eb 100644 --- a/src/sonic-host-services/setup.py +++ b/src/sonic-host-services/setup.py @@ -38,7 +38,7 @@ setup( 'pytest', 'pyfakefs', 'sonic-py-common', - 'deepdiff' + 'deepdiff==6.2.2' ], classifiers = [ 'Development Status :: 3 - Alpha',