On 02/15/2013 04:06 PM, Rajeev S wrote:
Installation causes error "module version has no
attribute get_version".Possibly a typo.

Hi Rajeev,

I did double check, and I'm positive that in the current version of autotest in both master and next already has the new get_version(). Not sure why it is not showing on your tree (perhaps you forgot to git pull or something?)

So, NACK.

Replaced with get_git_version()

---
  setup.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index c84b71a..a2345f6 100644
--- a/setup.py
+++ b/setup.py
@@ -83,7 +83,7 @@ def run():
            description='Autotest test framework',
            maintainer='Lucas Meneghel Rodrigues',
            maintainer_email='[email protected]',
-          version=version.get_version(),
+          version=version.get_git_version(),
            url='http://autotest.github.com',
            package_dir=get_package_dir(),
            package_data=get_package_data(),
@@ -93,4 +93,4 @@ def run():


  if __name__ == '__main__':
-    run()
\ No newline at end of file
+    run()

_______________________________________________
Autotest-kernel mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/autotest-kernel


_______________________________________________
Autotest-kernel mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/autotest-kernel

Reply via email to