Commit 1a2d9803 authored by Robert Bradshaw's avatar Robert Bradshaw

Clearer versioning.

parent 1634c2dc
......@@ -144,7 +144,7 @@ class TestWithTransform(object): # (TransformTest): # Disabled!
""", t)
if sys.version_info[:2] > (2, 4):
if sys.version_info[:2] >= (2, 5):
from Cython.Debugger import DebugWriter
from Cython.Debugger.Tests.TestLibCython import DebuggerTestCase
else:
......
......@@ -71,7 +71,7 @@ else:
setuptools_extra_args = {}
# tells whether to include cygdb (the script and the Cython.Debugger package
include_debugger = sys.version_info[:2] > (2, 4)
include_debugger = sys.version_info[:2] >= (2, 5)
if 'setuptools' in sys.modules:
setuptools_extra_args['zip_safe'] = False
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment