Release vppcfg 0.0.3
This commit is contained in:
2
Makefile
2
Makefile
@ -1,4 +1,4 @@
|
|||||||
VERSION=0.0.2
|
VERSION=0.0.3
|
||||||
VPPCFG:=vppcfg
|
VPPCFG:=vppcfg
|
||||||
PYTHON?=python3
|
PYTHON?=python3
|
||||||
PIP?=pip
|
PIP?=pip
|
||||||
|
12
debian/changelog
vendored
12
debian/changelog
vendored
@ -1,3 +1,15 @@
|
|||||||
|
vppcfg (0.0.3) unstable; urgency=low
|
||||||
|
|
||||||
|
Feature release:
|
||||||
|
* Allow the ability to set --novpp flag on planners. See user-guide for
|
||||||
|
details.
|
||||||
|
* Add device-type to the schema, which allows the configuratoin to specify
|
||||||
|
'dpdk' type interfaces. This paves the way for RDMA and AVF interfaces
|
||||||
|
in a later release.
|
||||||
|
* Some small bugfixes and refactors
|
||||||
|
* Lint: address a few pylint errors
|
||||||
|
|
||||||
|
-- Pim van Pelt <pim@ipng.nl> Sat, 03 Dec 2022 14:15:00 +0000
|
||||||
vppcfg (0.0.2) unstable; urgency=low
|
vppcfg (0.0.2) unstable; urgency=low
|
||||||
|
|
||||||
Bugfix release:
|
Bugfix release:
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -7,6 +7,6 @@ Standards-Version: 3.9.5
|
|||||||
|
|
||||||
Package: vppcfg
|
Package: vppcfg
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Pre-Depends: dpkg (>= 1.16.1), python3.8, ${misc:Pre-Depends}
|
Pre-Depends: dpkg (>= 1.16.1), python3 (>= 3.8), ${misc:Pre-Depends}
|
||||||
Depends: python3-netaddr, python3-ipaddr, ${misc:Depends}
|
Depends: python3-netaddr, python3-ipaddr, ${misc:Depends}
|
||||||
Description: A configuration tool for FD.io VPP
|
Description: A configuration tool for FD.io VPP
|
4
setup.py
4
setup.py
@ -3,10 +3,10 @@ from setuptools import setup
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="vppcfg",
|
name="vppcfg",
|
||||||
version="0.0.2",
|
version="0.0.3",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"requests",
|
"requests",
|
||||||
'importlib-metadata; python_version == "3.8"',
|
'importlib-metadata; python_version > "3.8"',
|
||||||
"yamale",
|
"yamale",
|
||||||
"netaddr",
|
"netaddr",
|
||||||
"vpp_papi",
|
"vpp_papi",
|
||||||
|
Reference in New Issue
Block a user