Skip to content

Commit

Permalink
0.6.4a
Browse files Browse the repository at this point in the history
  • Loading branch information
akarneliuk committed Nov 13, 2021
1 parent 7a93e31 commit ed2e98c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ Release **0.1.0**:

(c)2020-2021, karneliuk.com

.. |version| image:: https://img.shields.io/static/v1?label=latest&message=v0.6.4&color=success
.. |version| image:: https://img.shields.io/static/v1?label=latest&message=v0.6.4a&color=success
.. _version: https://pypi.org/project/pygnmi/
.. |tag| image:: https://img.shields.io/static/v1?label=status&message=stable&color=success
.. _tag: https://pypi.org/project/pygnmi/
Expand Down
2 changes: 1 addition & 1 deletion pygnmi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#(c)2019-2021, karneliuk.com

__version__ = "0.6.4"
__version__ = "0.6.4a"
4 changes: 2 additions & 2 deletions scripts/pygnmicli
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ def main():
result.close()
break

if result:
print(result)
if result and not args.print:
print(json.dumps(result, indent=4))


if __name__ == "__main__":
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
setup(
name = 'pygnmi',
packages = ['pygnmi', 'pygnmi.spec', 'pygnmi.artefacts'],
version = '0.6.4',
version = '0.6.4a',
license='bsd-3-clause',
description = 'This repository contains pure Python implementation of the gNMI client to interact with the network functions.',
long_description = long_description,
long_description_content_type = 'text/x-rst',
author = 'Anton Karneliuk',
author_email = '[email protected]',
url = 'https://github.com/akarneliuk/pygnmi',
download_url = 'https://github.com/akarneliuk/pygnmi/archive/v0.6.4.tar.gz',
download_url = 'https://github.com/akarneliuk/pygnmi/archive/v0.6.4a.tar.gz',
keywords = ['gnmi', 'automation', 'grpc', 'network'],
install_requires=[
'grpcio',
Expand Down

0 comments on commit ed2e98c

Please sign in to comment.