summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/setupscons.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-01-13 10:04:44 -0700
committerCharles Harris <charlesr.harris@gmail.com>2013-01-13 11:16:47 -0700
commitdf259db01ecf69d518fffd398dd6fb5cf60f1ba1 (patch)
treea7a7a7f6b9a5a80759576faa9e61cca97c58cefe /numpy/oldnumeric/setupscons.py
parent23e9f01f54474503f0296e3ff1cb173c6228cb98 (diff)
downloadnumpy-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/oldnumeric/setupscons.py')
-rw-r--r--numpy/oldnumeric/setupscons.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/numpy/oldnumeric/setupscons.py b/numpy/oldnumeric/setupscons.py
deleted file mode 100644
index 82e8a6201..000000000
--- a/numpy/oldnumeric/setupscons.py
+++ /dev/null
@@ -1,8 +0,0 @@
-
-def configuration(parent_package='',top_path=None):
- from numpy.distutils.misc_util import Configuration
- return Configuration('oldnumeric',parent_package,top_path)
-
-if __name__ == '__main__':
- from numpy.distutils.core import setup
- setup(configuration=configuration)