From 77d2f6adde71d7a545ff5bf6dc8d4ef0bf075a02 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Tue, 7 May 2013 10:54:05 +0200 Subject: [PATCH] fix issue245 by depending on py-1.4.14 which fixes py.io.dupfile to not assume file.mode is present. --- _pytest/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_pytest/__init__.py b/_pytest/__init__.py index 9df86916d..5fedeed6e 100644 --- a/_pytest/__init__.py +++ b/_pytest/__init__.py @@ -1,2 +1,2 @@ # -__version__ = '2.3.6.dev2' +__version__ = '2.3.6.dev3' diff --git a/setup.py b/setup.py index b0b02a87c..4245dc859 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def main(): name='pytest', description='py.test: simple powerful testing with Python', long_description = long_description, - version='2.3.6.dev2', + version='2.3.6.dev3', url='http://pytest.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],