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

Clearer versioning.

parent 1634c2dc
...@@ -144,7 +144,7 @@ class TestWithTransform(object): # (TransformTest): # Disabled! ...@@ -144,7 +144,7 @@ class TestWithTransform(object): # (TransformTest): # Disabled!
""", t) """, t)
if sys.version_info[:2] > (2, 4): if sys.version_info[:2] >= (2, 5):
from Cython.Debugger import DebugWriter from Cython.Debugger import DebugWriter
from Cython.Debugger.Tests.TestLibCython import DebuggerTestCase from Cython.Debugger.Tests.TestLibCython import DebuggerTestCase
else: else:
......
...@@ -71,7 +71,7 @@ else: ...@@ -71,7 +71,7 @@ else:
setuptools_extra_args = {} setuptools_extra_args = {}
# tells whether to include cygdb (the script and the Cython.Debugger package # 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: if 'setuptools' in sys.modules:
setuptools_extra_args['zip_safe'] = False 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