Skip to content

Commit 495584b

Browse files
authored
Remove platform-specific hardware plugin packages; They have been moved to sonic-platform-common repo (sonic-net#184)
- Also increment package version to 1.2
1 parent 1ce88d9 commit 495584b

14 files changed

+6
-4422
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Command-line utilities for SONiC
77

88
# Contribution guide
99

10-
All contributors must sign a contribution license agreement before contributions can be accepted. Contact [email protected] or [email protected]. Later this will be automated.
10+
All contributors must sign a contribution license agreement (CLA) before contributions can be accepted. This process is now automated via a GitHub bot when submitting new pull request. If the contributor has not yet signed a CLA, the bot will create a comment on the pull request containing a link to electronically sign the CLA.
1111

1212
### GitHub Workflow
1313

@@ -34,7 +34,7 @@ For example:
3434
> * Health-Monitor - The idea of the patch is that if something went wrong with the notification channel,
3535
> we will have the option to know about it (Query the LLEN table length).
3636
>
37-
> Signed-off-by: [email protected]
37+
> Signed-off-by: John Doe [email protected]
3838
3939

4040
* Each developer should fork this repository and [add the team as a Contributor](https://help.github.com/articles/adding-collaborators-to-a-personal-repository)

setup.py

+4-14
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
11
import glob
2-
import sys
32
from setuptools import setup
43
import unittest
54

6-
# For python3 wheel, we currently don't need test
7-
# TODO: build python3 wheel of all the dependencies, and remove conditional test
85
def get_test_suite():
9-
if sys.version_info >= (3, 0):
10-
return unittest.TestSuite()
11-
else:
12-
test_loader = unittest.TestLoader()
13-
test_suite = test_loader.discover('sonic-utilities-tests', pattern='*.py')
14-
return test_suite
6+
test_loader = unittest.TestLoader()
7+
test_suite = test_loader.discover('sonic-utilities-tests', pattern='*.py')
8+
return test_suite
159

1610
setup(
1711
name='sonic-utilities',
18-
version='1.1',
12+
version='1.2',
1913
description='Command-line utilities for SONiC',
2014
license='Apache 2.0',
2115
author='SONiC Team',
@@ -32,10 +26,7 @@ def get_test_suite():
3226
'sfputil',
3327
'psuutil',
3428
'show',
35-
'sonic_eeprom',
3629
'sonic_installer',
37-
'sonic_psu',
38-
'sonic_sfp',
3930
'sonic-utilities-tests',
4031
'undebug',
4132
],
@@ -92,7 +83,6 @@ def get_test_suite():
9283
'Natural Language :: English',
9384
'Operating System :: POSIX :: Linux',
9485
'Programming Language :: Python :: 2.7',
95-
'Programming Language :: Python :: 3.6',
9686
'Topic :: Utilities',
9787
],
9888
keywords='sonic SONiC utilities command line cli CLI',

sonic_eeprom/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)