diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-01-13 10:04:44 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-01-13 11:16:47 -0700 |
commit | df259db01ecf69d518fffd398dd6fb5cf60f1ba1 (patch) | |
tree | a7a7a7f6b9a5a80759576faa9e61cca97c58cefe /numpy/numarray | |
parent | 23e9f01f54474503f0296e3ff1cb173c6228cb98 (diff) | |
download | numpy-df259db01ecf69d518fffd398dd6fb5cf60f1ba1.tar.gz |
DEP: Remove scons related files and code.
This removes files and code supporting scons builds. After this change
numpy will only support builds using distutils or bento. The removal of
scons has been discussed on the list several times and a decision has been
made that scons support is no longer needed. This was originally discussed
for numpy 1.7 and because the distutils and bento methods are still
available we are skipping the usual deprecation period.
Diffstat (limited to 'numpy/numarray')
-rw-r--r-- | numpy/numarray/SConscript | 7 | ||||
-rw-r--r-- | numpy/numarray/SConstruct | 2 | ||||
-rw-r--r-- | numpy/numarray/setupscons.py | 14 |
3 files changed, 0 insertions, 23 deletions
diff --git a/numpy/numarray/SConscript b/numpy/numarray/SConscript deleted file mode 100644 index f2d18a400..000000000 --- a/numpy/numarray/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=['numpy', "#$build_prefix/numpy/core/src/private"]) -env.NumpyPythonExtension('_capi', source = ['_capi.c']) diff --git a/numpy/numarray/SConstruct b/numpy/numarray/SConstruct deleted file mode 100644 index a377d8391..000000000 --- a/numpy/numarray/SConstruct +++ /dev/null @@ -1,2 +0,0 @@ -from numscons import GetInitEnvironment -GetInitEnvironment(ARGUMENTS).DistutilsSConscript('SConscript') diff --git a/numpy/numarray/setupscons.py b/numpy/numarray/setupscons.py deleted file mode 100644 index 173612ae8..000000000 --- a/numpy/numarray/setupscons.py +++ /dev/null @@ -1,14 +0,0 @@ -from os.path import join - -def configuration(parent_package='',top_path=None): - from numpy.distutils.misc_util import Configuration - config = Configuration('numarray',parent_package,top_path) - - config.add_data_files('include/numpy/') - config.add_sconscript('SConstruct', source_files = ['_capi.c']) - - return config - -if __name__ == '__main__': - from numpy.distutils.core import setup - setup(configuration=configuration) |