-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build] Fix sonic-host-services dependency issue about deepdiff
- Loading branch information
Ubuntu
committed
Jan 11, 2023
1 parent
bd8bf9e
commit b94e3a2
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/sonic-host-services.patch/0001-tem-fix-deepdiff-version.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/setup.py b/setup.py | ||
index 9ed9e10..b752cd8 100644 | ||
--- a/setup.py | ||
+++ b/setup.py | ||
@@ -38,7 +38,8 @@ setup( | ||
'pytest', | ||
'pyfakefs', | ||
'sonic-py-common', | ||
- 'deepdiff' | ||
+ # there is something wrong with latest deepdiff(6.2.3) | ||
+ 'deepdiff==6.2.2' | ||
], | ||
classifiers = [ | ||
'Development Status :: 3 - Alpha', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0001-tem-fix-deepdiff-version.patch |