[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.
This commit is contained in:
Hua Liu 2023-03-23 09:39:06 -07:00 committed by GitHub
parent fe1e2b16f7
commit dad37bf471
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@ from setuptools import setup
dependencies = [ dependencies = [
'natsort==6.2.1', # 6.2.1 is the last version which supports Python 2 'natsort==6.2.1', # 6.2.1 is the last version which supports Python 2
'pyyaml', 'pyyaml',
'redis-dump-load',
] ]
setup( setup(