-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Change pycommon to use swsscommon #10099
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
liuh-80
merged 20 commits into
sonic-net:master
from
liuh-80:dev/liuh/upgrade_hostcfgd_to_swsscommon
Jun 3, 2022
Merged
Changes from 17 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
e38bbc4
Change pycommon to use swsscommon
e75e9ed
Update sonic-platform-daemons to check the fix of UT
liuh-80 28a75e2
update submodule reference
liuh-80 5d71fdf
update submodule reference
liuh-80 b470e73
Update reference to sonic-utilies
liuh-80 1286cdd
Fix swsscommon side issue
liuh-80 f21d1c8
Remove sonic DB config initialize from deviceinfo
liuh-80 b14647f
Remove TODO
liuh-80 45d60b1
Fix SNMP initialize issue
liuh-80 5a5f592
Fix build error
liuh-80 ba4f013
merge submodel sonic-utilies
liuh-80 1a3a020
Merge remote-tracking branch 'origin/master' into dev/liuh/upgrade_ho…
liuh-80 a86df70
Update code by PR comments
liuh-80 6843182
Revert git submodule change
liuh-80 d4af931
Revert submodule reference
liuh-80 6a87318
Revert sub-module change
liuh-80 45785e2
Merge remote-tracking branch 'origin' into dev/liuh/upgrade_hostcfgd_…
liuh-80 d9060f9
Merge remote-tracking branch 'origin/master' into dev/liuh/upgrade_ho…
f9366ff
Merge remote-tracking branch 'origin/master' into dev/liuh/upgrade_ho…
b94d674
Improve dependency
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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 |
---|---|---|
|
@@ -3,11 +3,6 @@ | |
dependencies = [ | ||
'natsort==6.2.1', # 6.2.1 is the last version which supports Python 2 | ||
'pyyaml', | ||
'swsssdk>=2.0.1', | ||
] | ||
|
||
high_performance_deps = [ | ||
'swsssdk[high_perf]>=2.0.1', | ||
] | ||
|
||
setup( | ||
|
@@ -21,9 +16,6 @@ | |
maintainer='Joe LeVeque', | ||
maintainer_email='[email protected]', | ||
install_requires=dependencies, | ||
extras_require={ | ||
'high_perf': high_performance_deps, | ||
}, | ||
packages=[ | ||
'sonic_py_common', | ||
], | ||
|
This file contains hidden or 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
This file contains hidden or 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
File renamed without changes.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it depend on LIBSWSSCOMMON directly? #Closed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, remove indirect dependency to LIBSWSSCOMMON.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you fixed py3, but py2 still has the same issue.