From dad37bf471220f50f07c3d4bf4f85e76fc71bae9 Mon Sep 17 00:00:00 2001 From: Hua Liu <58683130+liuh-80@users.noreply.github.com> Date: Thu, 23 Mar 2023 09:39:06 -0700 Subject: [PATCH] [202211] Update sonic-py-common, add missing dependency to redis-dump-load (#14360) Update sonic-py-common, add missing dependency to redis-dump-load. This is manually cherry-pick PR for https://github.com/sonic-net/sonic-buildimage/pull/14347 After 202211, the redis-dump-load been patched by sonic, so can't cherry-pick master branch PR to 202211 branch. #### Why I did it The script sonic_db_dump_load.py in sonic-py-common is depends on redis-dump-load, however the dependency is missing. #### How I did it Add redis-dump-load dependency. #### How to verify it Pass all E2E test case. #### Description for the changelog Update sonic-py-common, add missing dependency to redis-dump-load. --- src/sonic-py-common/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sonic-py-common/setup.py b/src/sonic-py-common/setup.py index 144cf61f52..f0e97ed84c 100644 --- a/src/sonic-py-common/setup.py +++ b/src/sonic-py-common/setup.py @@ -3,6 +3,7 @@ from setuptools import setup dependencies = [ 'natsort==6.2.1', # 6.2.1 is the last version which supports Python 2 'pyyaml', + 'redis-dump-load', ] setup(