From e706c7d92c4ee41e8e995fb3838bd0931b57efb5 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Wed, 4 Jan 2006 19:00:27 +0000 Subject: Changed all references to scipy to numpy --- numpy/distutils/command/install_headers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/distutils/command/install_headers.py') diff --git a/numpy/distutils/command/install_headers.py b/numpy/distutils/command/install_headers.py index 043f024f5..6512d5103 100644 --- a/numpy/distutils/command/install_headers.py +++ b/numpy/distutils/command/install_headers.py @@ -13,8 +13,8 @@ class install_headers (old_install_headers): for header in headers: if isinstance(header,tuple): # Kind of a hack, but I don't know where else to change this... - if header[0] == 'scipy.base': - header = ('scipy', header[1]) + if header[0] == 'numpy.base': + header = ('numpy', header[1]) if os.path.splitext(header[1])[1] == '.inc': continue d = os.path.join(*([prefix]+header[0].split('.'))) -- cgit v1.2.1