From dad8567640bce73669d565fd1671c37465c1d189 Mon Sep 17 00:00:00 2001 From: Mathieu Jadin Date: Mon, 25 Nov 2019 14:37:19 +0100 Subject: [PATCH] IPMininet v0.8 --- MANIFEST.in | 1 + docs/install.rst | 10 +++++----- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 756705c4..e63d2698 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ recursive-include ipmininet/router/config/templates * +recursive-include ipmininet/host/config/templates * diff --git a/docs/install.rst b/docs/install.rst index 22a7624f..7626fad6 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -32,7 +32,7 @@ and then, execute the following commands: .. code-block:: bash - $ vagrant init ipmininet/ubuntu-16.04 + $ vagrant init ipmininet/ubuntu-18.04 $ vagrant up This will create the VM. To access the VM with SSH, just issue the @@ -42,7 +42,7 @@ following command in the same directory as the two previous one: $ vagrant ssh -.. _vagrant box: https://app.vagrantup.com/ipmininet/boxes/ubuntu-16.04 +.. _vagrant box: https://app.vagrantup.com/ipmininet/boxes/ubuntu-18.04 .. _Vagrant: https://www.vagrantup.com/downloads.html .. _Virtualbox: https://www.virtualbox.org/wiki/Downloads @@ -50,18 +50,18 @@ Manual installation ------------------- You can download and install IPMininet. -You can change the installed version by replacing "0.7" in the following commands. +You can change the installed version by replacing "v0.8" in the following commands. If you have pip above **18.1**, execute: .. code-block:: bash - $ sudo pip install --upgrade git+https://github.com/cnp3/ipmininet.git@0.7 + $ sudo pip install --upgrade git+https://github.com/cnp3/ipmininet.git@v0.8 If you have an older version of pip, use: .. code-block:: bash - $ sudo pip install --process-dependency-links --upgrade git+https://github.com/cnp3/ipmininet.git@0.7 + $ sudo pip install --process-dependency-links --upgrade git+https://github.com/cnp3/ipmininet.git@v0.8 Then, you can install all the daemons: diff --git a/setup.py b/setup.py index 12bf9df7..5a9c7e48 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from setuptools.command.develop import develop from setuptools.command.install import install -VERSION = '0.7' +VERSION = '0.8' modname = distname = 'ipmininet' @@ -90,7 +90,7 @@ def run(self): classifiers=[ "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Programming Language :: Python", - "Development Status :: 2 - Pre-Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Topic :: System :: Networking", 'Programming Language :: Python :: 2',