From bf64a800d6c8140b033540c2e73ecf7dab7b1df9 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Thu, 17 Jul 2014 10:55:52 +0200 Subject: [PATCH] pytest depends on the freshly released 1.4.22 to function properly --- _pytest/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_pytest/__init__.py b/_pytest/__init__.py index 0b348cdc7..606941324 100644 --- a/_pytest/__init__.py +++ b/_pytest/__init__.py @@ -1,2 +1,2 @@ # -__version__ = '2.6.0.dev2' +__version__ = '2.6.0.dev3' diff --git a/setup.py b/setup.py index 86ff67fde..1c000ac6a 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ long_description = open('README.rst').read() def main(): - install_requires = ['py>=1.4.21.dev2'] + install_requires = ['py>=1.4.22'] if sys.version_info < (2, 7) or (3,) <= sys.version_info < (3, 2): install_requires.append('argparse') if sys.platform == 'win32': @@ -27,7 +27,7 @@ def main(): name='pytest', description='pytest: simple powerful testing with Python', long_description=long_description, - version='2.6.0.dev2', + version='2.6.0.dev3', url='http://pytest.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],