diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 19:00:27 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 19:00:27 +0000 |
commit | e706c7d92c4ee41e8e995fb3838bd0931b57efb5 (patch) | |
tree | 015a057d49422774e49ed211a37c14105d03a713 /numpy/distutils/command/build_ext.py | |
parent | c14d4fe25cb5cd482369734dd487ac8f376851c9 (diff) | |
download | numpy-e706c7d92c4ee41e8e995fb3838bd0931b57efb5.tar.gz |
Changed all references to scipy to numpy
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r-- | numpy/distutils/command/build_ext.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 7a2318b70..a7703ea7c 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -10,10 +10,10 @@ from types import * from distutils.dep_util import newer_group, newer from distutils.command.build_ext import build_ext as old_build_ext -from scipy.distutils import log -from scipy.distutils.misc_util import filter_sources, has_f_sources, \ +from numpy.distutils import log +from numpy.distutils.misc_util import filter_sources, has_f_sources, \ has_cxx_sources, get_ext_source_files, all_strings, \ - get_scipy_include_dirs + get_numpy_include_dirs from distutils.errors import DistutilsFileError class build_ext (old_build_ext): @@ -90,7 +90,7 @@ class build_ext (old_build_ext): # Initialize Fortran/C++ compilers if needed. if need_f_compiler: - from scipy.distutils.fcompiler import new_fcompiler + from numpy.distutils.fcompiler import new_fcompiler self.fcompiler = new_fcompiler(compiler=self.fcompiler, verbose=self.verbose, dry_run=self.dry_run, @@ -173,7 +173,7 @@ class build_ext (old_build_ext): kws = {'depends':ext.depends} output_dir = self.build_temp - include_dirs = ext.include_dirs + get_scipy_include_dirs() + include_dirs = ext.include_dirs + get_numpy_include_dirs() c_objects = [] if c_sources: |