From 7138df5b5107055540d104927976d0a35806cf7a Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sun, 31 Oct 2010 18:06:11 +0100 Subject: [PATCH] bump version --HG-- branch : trunk --- pytest/__init__.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pytest/__init__.py b/pytest/__init__.py index 98e67dd94..a535a9579 100644 --- a/pytest/__init__.py +++ b/pytest/__init__.py @@ -5,7 +5,7 @@ see http://pytest.org for documentation and details (c) Holger Krekel and others, 2004-2010 """ -__version__ = '2.0.0.dev10' +__version__ = '2.0.0.dev11' __all__ = ['config', 'cmdline'] @@ -13,4 +13,4 @@ from pytest import _core as cmdline UsageError = cmdline.UsageError 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 6c79bca6b..8966cdd70 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.dev10', + version='2.0.0.dev11', url='http://pytest.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],