From 5c16fdf155a5b76cb539704916155c13db4ebbd2 Mon Sep 17 00:00:00 2001 From: wdesmedt Date: Thu, 7 Dec 2023 11:57:52 +0000 Subject: [PATCH] fix to support SRL 23.10.* for bgp-rib reports --- nornir_srl/connections/srlinux.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nornir_srl/connections/srlinux.py b/nornir_srl/connections/srlinux.py index d02bb7f..95c5215 100644 --- a/nornir_srl/connections/srlinux.py +++ b/nornir_srl/connections/srlinux.py @@ -171,7 +171,7 @@ def get_bgp_rib( BGP_IP_VERSION_MAP = { 1: ("2021-", "2022-"), 2: ("2023-03",), - 3: ("2023-07",), + 3: ("2023-",), } ROUTE_FAMILY = { "evpn": "evpn", diff --git a/pyproject.toml b/pyproject.toml index 0a54987..e236523 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nornir-srl" -version = "0.2.2" +version = "0.2.3" description = "Nornir connection plugin for SRLinux" authors = ["Walter De Smedt "] readme = "README.md"