summaryrefslogtreecommitdiff
path: root/numpy/compat
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/compat
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/compat')
-rw-r--r--numpy/compat/setupscons.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/numpy/compat/setupscons.py b/numpy/compat/setupscons.py
deleted file mode 100644
index e518245b2..000000000
--- a/numpy/compat/setupscons.py
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env python
-import os.path
-
-def configuration(parent_package='',top_path=None):
- from numpy.distutils.misc_util import Configuration
- config = Configuration('compat',parent_package,top_path)
- return config
-
-if __name__ == '__main__':
- from numpy.distutils.core import setup
- setup(configuration=configuration)