Skip to content

Commit

Permalink
Compat 4.0: Change path to netbox.plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Alef-Burzmali committed May 9, 2024
1 parent 0e8e3f4 commit 0d0fbd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions netbox_data_flows/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from extras.plugins import PluginConfig
from netbox.plugins import PluginConfig

__version__ = "0.8.3-dev"
__version__ = "0.8.3"


class DataFlowsConfig(PluginConfig):
Expand All @@ -15,7 +15,8 @@ class DataFlowsConfig(PluginConfig):
author = "Thomas Fargeix"
required_settings = []
default_settings = {}
min_version = "3.6.0"
min_version = "3.7.0"
max_version = "3.7.9"

def ready(self):
from . import signals # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion netbox_data_flows/navigation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from extras.plugins import PluginMenu, PluginMenuButton, PluginMenuItem
from netbox.plugins import PluginMenu, PluginMenuButton, PluginMenuItem
from utilities.choices import ButtonColorChoices


Expand Down

0 comments on commit 0d0fbd8

Please sign in to comment.