From: Andy Grover Date: Tue, 13 Mar 2012 22:01:03 +0000 (-0700) Subject: Make setup.py version match version in .c X-Git-Tag: v0.1~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5e79d40bb47b8c4bae75cfc685a46d945dd56eb5;p=python-kmod.git Make setup.py version match version in .c Signed-off-by: Andy Grover --- diff --git a/setup.py b/setup.py index 9c6e422..09c6675 100644 --- a/setup.py +++ b/setup.py @@ -5,6 +5,6 @@ libkmod = Extension('kmod', libraries= ['kmod']) setup (name = 'kmod', - version = '1.0', + version = '0.1', description = 'Python binding for kmod', ext_modules = [libkmod])