diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 17:47:13 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 17:47:13 +0000 |
commit | c14d4fe25cb5cd482369734dd487ac8f376851c9 (patch) | |
tree | ebd088e5ccb2ca8162b53f1c443c6de303e9abe7 /numpy/random | |
parent | 3496a3cda8ea70253a76ed17c0af261f2d645fe2 (diff) | |
download | numpy-c14d4fe25cb5cd482369734dd487ac8f376851c9.tar.gz |
Change most setup.py files
Diffstat (limited to 'numpy/random')
-rw-r--r-- | numpy/random/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py index 17e5e0133..7cb7d2167 100644 --- a/numpy/random/setup.py +++ b/numpy/random/setup.py @@ -2,7 +2,7 @@ from os.path import join def configuration(parent_package='',top_path=None): - from scipy.distutils.misc_util import Configuration + from numpy.distutils.misc_util import Configuration config = Configuration('random',parent_package,top_path) # Configure mtrand @@ -20,5 +20,5 @@ def configuration(parent_package='',top_path=None): return config if __name__ == '__main__': - from scipy.distutils.core import setup + from numpy.distutils.core import setup setup(**configuration(top_path='').todict()) |