diff --git a/py/__init__.py b/py/__init__.py index 2b9f46a50..57abc8f27 100644 --- a/py/__init__.py +++ b/py/__init__.py @@ -8,7 +8,7 @@ dictionary or an import path. (c) Holger Krekel and others, 2004-2010 """ -_version__ = version = "1.2.2" +__version__ = version = "1.2.2" import py.apipkg diff --git a/setup.py b/setup.py index 428aa4592..ce5d79ba6 100644 --- a/setup.py +++ b/setup.py @@ -21,13 +21,12 @@ For questions please check out http://pylib.org/contact.html (c) Holger Krekel and others, 2004-2010 """ -trunk = None def main(): setup( name='py', description='py.test and pylib: rapid testing and development utils.', long_description = long_description, - version= trunk or '1.2.2', + version= '1.2.2', url='http://pylib.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],