-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #191 from netbox-community/develop
Develop
- Loading branch information
Showing
27 changed files
with
1,717 additions
and
928 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
PYTHON_VER?=3.8 | ||
NETBOX_VER?=v3.7.0 | ||
PYTHON_VER?=3.10 | ||
NETBOX_VER?=v4.0.2 | ||
|
||
NAME=netbox-bgp | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from extras.plugins import PluginConfig | ||
from netbox.plugins import PluginConfig | ||
from .version import __version__ | ||
|
||
|
||
|
@@ -11,8 +11,8 @@ class BGPConfig(PluginConfig): | |
author_email = '[email protected]' | ||
base_url = 'bgp' | ||
required_settings = [] | ||
min_version = '3.5.0' | ||
max_version = '3.7.99' | ||
min_version = '4.0.0' | ||
max_version = '4.0.99' | ||
default_settings = { | ||
'device_ext_page': 'right', | ||
'top_level_menu' : False, | ||
|
Oops, something went wrong.