mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-21 11:37:21 -06:00
* Closes #16090: Show NetBox version if plugin validation fails * Shorten error message --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
This commit is contained in:
parent
111cbe5b7c
commit
4b91e79d1e
@ -138,13 +138,15 @@ class PluginConfig(AppConfig):
|
|||||||
min_version = version.parse(cls.min_version)
|
min_version = version.parse(cls.min_version)
|
||||||
if current_version < min_version:
|
if current_version < min_version:
|
||||||
raise ImproperlyConfigured(
|
raise ImproperlyConfigured(
|
||||||
f"Plugin {cls.__module__} requires NetBox minimum version {cls.min_version}."
|
f"Plugin {cls.__module__} requires NetBox minimum version {cls.min_version} (current: "
|
||||||
|
f"{netbox_version})."
|
||||||
)
|
)
|
||||||
if cls.max_version is not None:
|
if cls.max_version is not None:
|
||||||
max_version = version.parse(cls.max_version)
|
max_version = version.parse(cls.max_version)
|
||||||
if current_version > max_version:
|
if current_version > max_version:
|
||||||
raise ImproperlyConfigured(
|
raise ImproperlyConfigured(
|
||||||
f"Plugin {cls.__module__} requires NetBox maximum version {cls.max_version}."
|
f"Plugin {cls.__module__} requires NetBox maximum version {cls.max_version} (current: "
|
||||||
|
f"{netbox_version})."
|
||||||
)
|
)
|
||||||
|
|
||||||
# Verify required configuration settings
|
# Verify required configuration settings
|
||||||
|
Loading…
Reference in New Issue
Block a user