Fix NetBox migration dependencies

This commit is contained in:
2026-07-10 09:31:37 +02:00
parent a1a92af0e0
commit 53ba12fb8d
4 changed files with 6 additions and 5 deletions
+1
View File
@@ -5,3 +5,4 @@
| 0.1.0 | 4.4.0 | 4.5.x |
| 0.1.1 | 4.4.0 | 4.5.x |
| 0.1.2 | 4.4.0 | 4.5.x |
| 0.1.3 | 4.4.0 | 4.5.x |
+1 -1
View File
@@ -5,7 +5,7 @@ class VMwareImporterConfig(PluginConfig):
name = "netbox_vmware_importer"
verbose_name = "VMware Importer"
description = "Synchronize VMware vSphere virtual machines into NetBox."
version = "0.1.2"
version = "0.1.3"
author = "Internal NetBox Team"
base_url = "vmware-importer"
min_version = "4.4.0"
@@ -7,9 +7,9 @@ class Migration(migrations.Migration):
initial = True
dependencies = [
("dcim", "0001_initial"),
("tenancy", "0001_initial"),
("virtualization", "0001_initial"),
("dcim", "__latest__"),
("tenancy", "__latest__"),
("virtualization", "__latest__"),
]
operations = [
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "netbox-vmware-importer"
version = "0.1.2"
version = "0.1.3"
description = "NetBox plugin to synchronize VMware vSphere virtual machines into NetBox."
readme = "README.md"
requires-python = ">=3.12"