summaryrefslogtreecommitdiff
path: root/numpy/core/setup.py
diff options
context:
space:
mode:
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.