diff options
Diffstat (limited to 'numpy/distutils/fcompiler/hpux.py')
-rw-r--r-- | numpy/distutils/fcompiler/hpux.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/numpy/distutils/fcompiler/hpux.py b/numpy/distutils/fcompiler/hpux.py index 9004961e1..51bad548a 100644 --- a/numpy/distutils/fcompiler/hpux.py +++ b/numpy/distutils/fcompiler/hpux.py @@ -39,7 +39,5 @@ class HPUXFCompiler(FCompiler): if __name__ == '__main__': from distutils import log log.set_verbosity(10) - from numpy.distutils.fcompiler import new_fcompiler - compiler = new_fcompiler(compiler='hpux') - compiler.customize() - print(compiler.get_version()) + from numpy.distutils import customized_fcompiler + print(customized_fcompiler(compiler='hpux').get_version()) |