diff options
Diffstat (limited to 'numpy/distutils/fcompiler/g95.py')
-rw-r--r-- | numpy/distutils/fcompiler/g95.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/fcompiler/g95.py b/numpy/distutils/fcompiler/g95.py index a3bf374a8..247d3f94b 100644 --- a/numpy/distutils/fcompiler/g95.py +++ b/numpy/distutils/fcompiler/g95.py @@ -3,8 +3,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 G95FCompiler(FCompiler): @@ -34,7 +34,7 @@ class G95FCompiler(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='g95') compiler = G95FCompiler() compiler.customize() |