diff options
Diffstat (limited to 'numpy/distutils/fcompiler/g95.py')
-rw-r--r-- | numpy/distutils/fcompiler/g95.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/distutils/fcompiler/g95.py b/numpy/distutils/fcompiler/g95.py index 26f73b530..e7c659b33 100644 --- a/numpy/distutils/fcompiler/g95.py +++ b/numpy/distutils/fcompiler/g95.py @@ -39,7 +39,6 @@ class G95FCompiler(FCompiler): if __name__ == '__main__': from distutils import log + from numpy.distutils import customized_fcompiler log.set_verbosity(2) - compiler = G95FCompiler() - compiler.customize() - print(compiler.get_version()) + print(customized_fcompiler('g95').get_version()) |