summaryrefslogtreecommitdiff
path: root/numpy/random/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/random/setup.py')
-rw-r--r--numpy/random/setup.py4
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())