From 5d67342b6a35a7fc30cc1a27ac7a295b7d646333 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Mon, 6 Dec 2021 18:27:46 -0600 Subject: [PATCH] Appeasing NetBox decision to deprecate Py3.6 --- netbox_onboarding/__init__.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox_onboarding/__init__.py b/netbox_onboarding/__init__.py index 19127c0..78cbd96 100644 --- a/netbox_onboarding/__init__.py +++ b/netbox_onboarding/__init__.py @@ -12,7 +12,7 @@ limitations under the License. """ -__version__ = "2.3.0" +__version__ = "3.0.0" from extras.plugins import PluginConfig diff --git a/pyproject.toml b/pyproject.toml index 1a3e766..e470148 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ntc-netbox-plugin-onboarding" -version = "2.3.0" +version = "3.0.0" description = "A plugin for NetBox to easily onboard new devices." authors = ["Network to Code, LLC "] license = "Apache-2.0" @@ -18,7 +18,7 @@ packages = [ ] [tool.poetry.dependencies] -python = "^3.6 || ^3.7 || ^3.8" +python = "^3.7 || ^3.8 || ^3.9" napalm = ">=2.5.0, <4" zipp = "^3.4.0"