Skip to content

Commit 83afe4a

Browse files
committed
chore(plugin): Bump max_version to 4.4.99
Update the plugin's max_version compatibility to 4.4.99, ensuring support for newer NetBox releases. Keeps the plugin compatible with the latest NetBox updates.
1 parent e2279f6 commit 83afe4a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

netbox_acls/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@
22
Define the NetBox Plugin
33
"""
44

5-
from netbox.plugins import PluginConfig
65
import importlib.metadata
76

7+
from netbox.plugins import PluginConfig
8+
9+
810
class NetBoxACLsConfig(PluginConfig):
911
"""
1012
Plugin specifc configuration
1113
"""
1214

1315
name = "netbox_acls"
1416
verbose_name = "Access Lists"
15-
version = importlib.metadata.version('netbox-acls')
17+
version = importlib.metadata.version("netbox-acls")
1618
description = "Manage simple ACLs in NetBox"
1719
base_url = "access-lists"
1820
min_version = "4.3.0"
19-
max_version = "4.3.99"
21+
max_version = "4.4.99"
2022

2123

2224
config = NetBoxACLsConfig

0 commit comments

Comments
 (0)