From: Stefan Behnel Date: Thu, 25 Nov 2010 22:32:21 +0000 (+0100) Subject: disable test in Py2.3 X-Git-Tag: 0.14.alpha0~74 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9ae7fc99e36819c838c7823ce5a0cea8b0dd0b1a;p=cython.git disable test in Py2.3 --- diff --git a/runtests.py b/runtests.py index ff73018b..8d966452 100644 --- a/runtests.py +++ b/runtests.py @@ -56,14 +56,13 @@ EXT_DEP_INCLUDES = [ VER_DEP_MODULES = { # tests are excluded if 'CurrentPythonVersion OP VersionTuple', i.e. - # (2,4) : (operator.le, ...) excludes ... when PyVer <= 2.4.x + # (2,4) : (operator.lt, ...) excludes ... when PyVer < 2.4.x + (2,4) : (operator.lt, lambda x: x in ['run.extern_builtins_T258', + 'run.builtin_sorted' + ]), (2,5) : (operator.lt, lambda x: x in ['run.any', 'run.all', ]), - (2,4) : (operator.le, lambda x: x in ['run.extern_builtins_T258' - ]), - (2,4) : (operator.lt, lambda x: x in ['run.builtin_sorted' - ]), (2,6) : (operator.lt, lambda x: x in ['run.print_function', 'run.cython3', ]),