From 99f1c4714c4cece9e0cd0123d0562e1582282496 Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 8 Jan 2018 12:09:20 +0100 Subject: [PATCH] Remove osmotestvty.py from python 3 installation This script is actually not python 3 compatible yet despite passing current tests. Let's not install it for python 3 until we can figure out a way to catch this incompatibility with test code. Change-Id: Ief11b75acc973dc7aeaac9c2298a21dc5390efe4 Related: OS#2821 --- osmopy/__init__.py | 2 +- setup.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/osmopy/__init__.py b/osmopy/__init__.py index b1b0651..d3d3005 100644 --- a/osmopy/__init__.py +++ b/osmopy/__init__.py @@ -1,4 +1,4 @@ #!/usr/bin/env python -__version__ = '0.0.6' +__version__ = '0.0.7' __all__ = ['obscvty', 'osmoutil', 'osmo_ipa', 'osmo_interact'] diff --git a/setup.py b/setup.py index bbb4b93..a91274d 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,6 @@ if sys.version_info.major == 2: elif sys.version_info.major == 3: scripts = ["scripts/osmodumpdoc.py", "scripts/osmotestconfig.py", - "scripts/osmotestvty.py", "scripts/osmo_interact_vty.py", "scripts/osmo_interact_ctrl.py", "scripts/osmo_ctrl.py",