From 95bcdec1ededf5fb32a8c4f1736a1bfa3ee58cb8 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Wed, 30 Nov 2016 18:45:10 +0100 Subject: [PATCH] setup.py: remove status from version string --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 277669cd..9f55848b 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ __version__ = '.'.join(map(str, [AUBIO_MAJOR_VERSION, if AUBIO_VERSION_STATUS is not None: if AUBIO_VERSION_STATUS.startswith('~'): AUBIO_VERSION_STATUS = AUBIO_VERSION_STATUS[1:] - __version__ += AUBIO_VERSION_STATUS + #__version__ += AUBIO_VERSION_STATUS include_dirs = [] library_dirs = [] @@ -48,7 +48,8 @@ aubio_extension = Extension("aubio._aubio", if os.path.isfile('src/aubio.h'): if not os.path.isdir(os.path.join('build','src')): - __version__ += 'a2' # python only version + pass + #__version__ += 'a2' # python only version classifiers = [ 'Development Status :: 4 - Beta', -- 2.11.0