From: Paul Brossier Date: Sun, 8 Jan 2017 13:41:34 +0000 (+0100) Subject: setup.py: remove extra quotes X-Git-Tag: 0.4.4~12 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=c8c7aa6a9234828d94424620ce3288d4ea1585be;p=aubio.git setup.py: remove extra quotes --- diff --git a/setup.py b/setup.py index d62f9ede..38be7c15 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ if AUBIO_VERSION_STATUS is not None: include_dirs = [] library_dirs = [] -define_macros = [('AUBIO_VERSION', '"%s"' % __version__)] +define_macros = [('AUBIO_VERSION', '%s' % __version__)] extra_link_args = [] include_dirs += [ 'python/ext' ]