Skip to content

Commit

Permalink
Merge pull request numpy#5403 from Juanlu001/patch-1
Browse files Browse the repository at this point in the history
Remove NotImplementedError for MinGW-w64
  • Loading branch information
rgommers committed Dec 30, 2014
2 parents b2f6792 + acd8736 commit 1f6084a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/distutils/fcompiler/gnu.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 1f6084a

Please sign in to comment.