Skip to content

Commit

Permalink
Remove platform-specific hardware plugin packages; They have been mov…
Browse files Browse the repository at this point in the history
…ed to sonic-platform-common repo (#184)

- Also increment package version to 1.2
  • Loading branch information
jleveque authored Jan 13, 2018
1 parent 1ce88d9 commit 495584b
Show file tree
Hide file tree
Showing 14 changed files with 6 additions and 4,422 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Command-line utilities for SONiC

# Contribution guide

All contributors must sign a contribution license agreement before contributions can be accepted. Contact [email protected] or [email protected]. Later this will be automated.
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.

### GitHub Workflow

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

* Each developer should fork this repository and [add the team as a Contributor](https://help.github.com/articles/adding-collaborators-to-a-personal-repository)
Expand Down
18 changes: 4 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
import glob
import sys
from setuptools import setup
import unittest

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

setup(
name='sonic-utilities',
version='1.1',
version='1.2',
description='Command-line utilities for SONiC',
license='Apache 2.0',
author='SONiC Team',
Expand All @@ -32,10 +26,7 @@ def get_test_suite():
'sfputil',
'psuutil',
'show',
'sonic_eeprom',
'sonic_installer',
'sonic_psu',
'sonic_sfp',
'sonic-utilities-tests',
'undebug',
],
Expand Down Expand Up @@ -92,7 +83,6 @@ def get_test_suite():
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
keywords='sonic SONiC utilities command line cli CLI',
Expand Down
Empty file removed sonic_eeprom/__init__.py
Empty file.
Loading

0 comments on commit 495584b

Please sign in to comment.