From acd873633a9c7017571834ca9d266ed5756d73ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 29 Dec 2014 12:28:39 +0100 Subject: [PATCH] Removed NotImplementedError for MinGW-w64 Closes #3405 --- numpy/distutils/fcompiler/gnu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index 1f9f3404c5ed..ccd5e8d48a91 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -335,7 +335,7 @@ def get_libraries(self): if c_compiler and c_compiler.compiler_type == "msvc": return [] else: - raise NotImplementedError("Only MS compiler supported with gfortran on win64") + pass return opt def get_target(self):