Skip to content

Commit

Permalink
24.7.2 released
Browse files Browse the repository at this point in the history
  • Loading branch information
SRBuilds committed Sep 6, 2024
1 parent eaa7793 commit 973cb55
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
author = 'Nokia'

# The full version, including alpha/beta/rc tags
version = '24.7.1'
release = '24.7.1'
version = '24.7.2'
release = '24.7.2'


# -- General configuration ---------------------------------------------------
Expand Down
14 changes: 14 additions & 0 deletions docs/source/features/22.10.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Release 22.10
*************

22.10.9
#######

* No additional features

.. Reviewed by PLM 20240627
22.10.8
#######

* No additional features



22.10.7
#######

Expand Down
8 changes: 8 additions & 0 deletions docs/source/features/23.10.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Release 23.10
*************

23.10.6
#######

* No additional features

.. Reviewed by PLM 20240718
.. Reviewed by TechComms 20240718
23.10.5
#######

Expand Down
8 changes: 8 additions & 0 deletions docs/source/features/24.07.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Release 24.7
************

24.7.2
######

* No additional features

.. Reviewed by PLM 20240814
24.7.1
######

Expand Down
8 changes: 3 additions & 5 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ documentation will be updated accordingly.
.. list-table::
:header-rows: 0

* - pySROS release: 24.7.1
* - Document Number: 3HE 20087 AAAD TQZZA

.. Reviewed by PLM 20240506
.. Reviewed by TechComms 20240529
* - pySROS release: 24.7.2
* - Document Number: 3HE 20087 AAAE TQZZA

.. Reviewed by PLM 20240813
.. toctree::
Expand Down
5 changes: 3 additions & 2 deletions examples/show_router_bgp_asn.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# pylint: disable=import-error, import-outside-toplevel, line-too-long, too-many-branches, too-many-locals, too-many-statements

"""
Tested on: SR OS 24.3.R1
Tested on: SR OS 24.3.R2
Show all BGP peers for an ASN.
Expand Down Expand Up @@ -221,6 +221,8 @@ def show_router_bgp_asn_output(connection_object, asn):
num_down_neighbors = 0
num_disabled_neighbors = 0
for neighbor in sorted(bgp_config):
num_families = 0

if asn == 0 or int(asn) == bgp_config[neighbor]["peer-as"].data:
# Print line 1
print(bright_cyan, end="")
Expand Down Expand Up @@ -270,7 +272,6 @@ def show_router_bgp_asn_output(connection_object, asn):
== "Established"
):
num_up_neighbors += 1
num_families = 0
for family in sorted(
bgp_stats[neighbor]["statistics"]["negotiated-family"]
):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='pysros',
version='24.7.1',
version='24.7.2',
packages=['pysros'],
url='https://www.nokia.com',
license='Copyright 2021-2024 Nokia. License available in the LICENSE.md file.',
Expand Down

0 comments on commit 973cb55

Please sign in to comment.