From 5c8b9f5788b6e3b6ad311f7a0048b76a575df022 Mon Sep 17 00:00:00 2001 From: Misha Komarovskiy Date: Tue, 21 Feb 2023 10:00:32 +0300 Subject: [PATCH 1/2] Update max version to 3.4.99 Signed-off-by: Misha Komarovskiy --- netbox_static_routes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox_static_routes/__init__.py b/netbox_static_routes/__init__.py index becf9e9..ad50a6b 100644 --- a/netbox_static_routes/__init__.py +++ b/netbox_static_routes/__init__.py @@ -11,7 +11,7 @@ class NetBoxStaticRoutesConfig(PluginConfig): base_url = 'static-routes' required_settings = [] min_version = '3.2.0' - max_version = '3.2.99' + max_version = '3.4.99' default_settings = {} config = NetBoxStaticRoutesConfig From 61ed911bd4ab298c82a5d2a0e8d705683545bb28 Mon Sep 17 00:00:00 2001 From: Misha Komarovskiy Date: Tue, 21 Feb 2023 10:02:25 +0300 Subject: [PATCH 2/2] Add MANIFEST.in file to add templates to package Signed-off-by: Misha Komarovskiy --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..417aea7 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include netbox_static_routes/templates *.html