From 21d38ebd64fd6fa691a11216b71c28be6c83fd37 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sat, 3 Dec 2022 17:03:19 +0000 Subject: [PATCH] build: allow python3.8 and higher (due to dictionary merging code) --- debian/control | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index a07c80f..c825b3d 100644 --- a/debian/control +++ b/debian/control @@ -7,6 +7,6 @@ Standards-Version: 3.9.5 Package: vppcfg Architecture: any -Pre-Depends: dpkg (>= 1.16.1), python3 (>= 3.8), ${misc:Pre-Depends} +Pre-Depends: dpkg (>= 1.16.1), python3 (>=3.8), ${misc:Pre-Depends} Depends: python3-netaddr, python3-ipaddr, ${misc:Depends} Description: A configuration tool for FD.io VPP diff --git a/setup.py b/setup.py index ff4421c..17c2393 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( version="0.0.3", install_requires=[ "requests", - 'importlib-metadata; python_version > "3.8"', + 'importlib-metadata; python_version >= "3.8"', "yamale", "netaddr", "vpp_papi",