Skip to content

Commit

Permalink
Merge pull request #191 from netbox-community/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
k01ek authored May 15, 2024
2 parents 644a62e + 82e1a76 commit 5304af4
Show file tree
Hide file tree
Showing 27 changed files with 1,717 additions and 928 deletions.
4 changes: 2 additions & 2 deletions Makefile
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

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ This plugin provide following Models:
| NetBox 3.5 | >= 0.10.0 |
| NetBox 3.6 | >= 0.11.0 |
| NetBox 3.7 | >= 0.12.0 |
| NetBox 4.0 | >= 0.13.0 |

## Installation

Expand Down
6 changes: 3 additions & 3 deletions netbox_bgp/__init__.py
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__


Expand All @@ -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,
Expand Down
Loading

0 comments on commit 5304af4

Please sign in to comment.