summaryrefslogtreecommitdiff
path: root/numpy/core/setup.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-07-25 07:14:05 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-07-25 07:14:05 +0000
commit4eea418ebf33e4d78fd10b6db7d5daadc0bd359d (patch)
treecd12ef09f55d0845c6862a8245aff89b84bbe27d /numpy/core/setup.py
parentb2eafe470daa694148b7aebd5080006893ea4829 (diff)
downloadnumpy-4eea418ebf33e4d78fd10b6db7d5daadc0bd359d.tar.gz
Update check for no-threading and change wording of error.
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r--numpy/core/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py
index 3a7df8f63..2cd3afdd4 100644
--- a/numpy/core/setup.py
+++ b/numpy/core/setup.py
@@ -42,7 +42,7 @@ def configuration(parent_package='',top_path=None):
# ufunc code. NPY_ALLOW_C_API and friends
# cause the segfault. So, we disable threading
# for now.
- if sys.version[:3] < '2.4':
+ if sys.version[:5] < '2.4.2':
nosmp = 1
else:
# Perhaps a fancier check is in order here.