documentation theme update, version bumping to 5.0, changes to cleanup pass for ns3 code

This commit is contained in:
Blake J. Harnden 2017-08-17 15:25:12 -07:00
parent 340b37444b
commit 8155cdc617
14 changed files with 54 additions and 52 deletions

View file

@ -97,7 +97,7 @@ uninstall-local:
# Python package uninstall
uninstall-hook:
yes | pip uninstall core_python
yes | pip uninstall core-python
rm -f ${pythondir}/core_python_netns-1.0-py${PYTHON_VERSION}.egg-info
rm -rf ${pythondir}/core
rmdir -p $(coreexservicesdir) || true

View file

@ -41,7 +41,7 @@ def add_to_server(session):
"""
global server
try:
server.addsession(session)
server.add_session(session)
return True
except NameError:
return False

View file

@ -30,7 +30,7 @@ def add_to_server(session):
"""
global server
try:
server.addsession(session)
server.add_session(session)
return True
except NameError:
return False

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="corens3-python",
version="5.0.0",
version="5.0",
packages=[
"corens3",
],

View file

@ -7,5 +7,3 @@ pycco==0.5.1
pytest==3.0.7
pytest-cov==2.5.1
pytest-runner==2.11.1
sphinx==1.4.8
sphinx_rtd_theme==0.1.9

View file

@ -8,7 +8,7 @@ Defines how CORE will be built for installation.
from setuptools import setup
setup(name="core-python",
version="5.0.0",
version="5.0",
packages=[
"core",
"core.addons",