Skip to content

Commit 5304af4

Browse files
authored
Merge pull request #191 from netbox-community/develop
Develop
2 parents 644a62e + 82e1a76 commit 5304af4

27 files changed

+1717
-928
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
PYTHON_VER?=3.8
2-
NETBOX_VER?=v3.7.0
1+
PYTHON_VER?=3.10
2+
NETBOX_VER?=v4.0.2
33

44
NAME=netbox-bgp
55

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This plugin provide following Models:
1616
| NetBox 3.5 | >= 0.10.0 |
1717
| NetBox 3.6 | >= 0.11.0 |
1818
| NetBox 3.7 | >= 0.12.0 |
19+
| NetBox 4.0 | >= 0.13.0 |
1920

2021
## Installation
2122

netbox_bgp/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from extras.plugins import PluginConfig
1+
from netbox.plugins import PluginConfig
22
from .version import __version__
33

44

@@ -11,8 +11,8 @@ class BGPConfig(PluginConfig):
1111
author_email = '[email protected]'
1212
base_url = 'bgp'
1313
required_settings = []
14-
min_version = '3.5.0'
15-
max_version = '3.7.99'
14+
min_version = '4.0.0'
15+
max_version = '4.0.99'
1616
default_settings = {
1717
'device_ext_page': 'right',
1818
'top_level_menu' : False,

0 commit comments

Comments
 (0)