diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-01-15 15:30:56 -0800 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-01-15 15:30:56 -0800 |
commit | 27690e33fa2202ecb1bca338ff38320de84b27ea (patch) | |
tree | f9c821d396bc68999f0bace8cc6e25d020392bf1 /numpy/lib | |
parent | ee6c66a2a71f46f02a823a8e107592ca3b76858e (diff) | |
parent | 3af34a4b31e1f91a8b626c9d0b187f6aa8a034cb (diff) | |
download | numpy-27690e33fa2202ecb1bca338ff38320de84b27ea.tar.gz |
Merge pull request #2914 from charris/remove-scons-support
Remove scons support
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/SConscript | 7 | ||||
-rw-r--r-- | numpy/lib/SConstruct | 2 | ||||
-rw-r--r-- | numpy/lib/setupscons.py | 16 |
3 files changed, 0 insertions, 25 deletions
diff --git a/numpy/lib/SConscript b/numpy/lib/SConscript deleted file mode 100644 index 2d1ed5576..000000000 --- a/numpy/lib/SConscript +++ /dev/null @@ -1,7 +0,0 @@ -# Last Change: Thu Jun 12 06:00 PM 2008 J -# vim:syntax=python -from numscons import GetNumpyEnvironment - -env = GetNumpyEnvironment(ARGUMENTS) -env.Prepend(CPPPATH=["#$build_prefix/numpy/core/src/private"]) -env.NumpyPythonExtension('_compiled_base', source = ['src/_compiled_base.c']) diff --git a/numpy/lib/SConstruct b/numpy/lib/SConstruct deleted file mode 100644 index a377d8391..000000000 --- a/numpy/lib/SConstruct +++ /dev/null @@ -1,2 +0,0 @@ -from numscons import GetInitEnvironment -GetInitEnvironment(ARGUMENTS).DistutilsSConscript('SConscript') diff --git a/numpy/lib/setupscons.py b/numpy/lib/setupscons.py deleted file mode 100644 index 4f31f6e8a..000000000 --- a/numpy/lib/setupscons.py +++ /dev/null @@ -1,16 +0,0 @@ -from os.path import join - -def configuration(parent_package='',top_path=None): - from numpy.distutils.misc_util import Configuration - - config = Configuration('lib',parent_package,top_path) - - config.add_sconscript('SConstruct', - source_files = [join('src', '_compiled_base.c')]) - config.add_data_dir('tests') - - return config - -if __name__=='__main__': - from numpy.distutils.core import setup - setup(configuration=configuration) |