summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/pg.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-04 19:00:27 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-04 19:00:27 +0000
commite706c7d92c4ee41e8e995fb3838bd0931b57efb5 (patch)
tree015a057d49422774e49ed211a37c14105d03a713 /numpy/distutils/fcompiler/pg.py
parentc14d4fe25cb5cd482369734dd487ac8f376851c9 (diff)
downloadpython-numpy-e706c7d92c4ee41e8e995fb3838bd0931b57efb5.tar.gz
python-numpy-e706c7d92c4ee41e8e995fb3838bd0931b57efb5.tar.bz2
python-numpy-e706c7d92c4ee41e8e995fb3838bd0931b57efb5.zip
Changed all references to scipy to numpy
Diffstat (limited to 'numpy/distutils/fcompiler/pg.py')
-rw-r--r--numpy/distutils/fcompiler/pg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/fcompiler/pg.py b/numpy/distutils/fcompiler/pg.py
index bfdf9752c..94aefa244 100644
--- a/numpy/distutils/fcompiler/pg.py
+++ b/numpy/distutils/fcompiler/pg.py
@@ -4,8 +4,8 @@
import os
import sys
-from scipy.distutils.cpuinfo import cpu
-from scipy.distutils.fcompiler import FCompiler
+from numpy.distutils.cpuinfo import cpu
+from numpy.distutils.fcompiler import FCompiler
class PGroupFCompiler(FCompiler):
@@ -36,7 +36,7 @@ class PGroupFCompiler(FCompiler):
if __name__ == '__main__':
from distutils import log
log.set_verbosity(2)
- from scipy.distutils.fcompiler import new_fcompiler
+ from numpy.distutils.fcompiler import new_fcompiler
compiler = new_fcompiler(compiler='pg')
compiler.customize()
print compiler.get_version()