diff --git a/pytest/__init__.py b/pytest/__init__.py index f63b0c006..3ded672c1 100644 --- a/pytest/__init__.py +++ b/pytest/__init__.py @@ -5,11 +5,11 @@ see http://pytest.org for documentation and details (c) Holger Krekel and others, 2004-2010 """ -__version__ = "2.0.0.dev3" +__version__ = "2.0.0.dev4" __all__ = ['config', 'cmdline'] from pytest import _core as cmdline def __main__(): - raise SystemExit(cmdline.main()) + raise SystemExit(cmdline.main()) \ No newline at end of file diff --git a/setup.py b/setup.py index 0eaeeb17c..1ddbf92fd 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def main(): name='pytest', description='py.test: simple powerful testing with Python', long_description = long_description, - version= '2.0.0.dev3', + version='2.0.0.dev5', url='http://pytest.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], @@ -66,5 +66,4 @@ def make_entry_points(): return {'console_scripts': l} if __name__ == '__main__': - main() - + main() \ No newline at end of file