diff options
author | David Cournapeau <cournape@gmail.com> | 2008-11-17 13:53:42 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-11-17 13:53:42 +0000 |
commit | ea229684976538ea353908047ea2ca705c59aea1 (patch) | |
tree | 3034589f01acdf07954a973f11a4dc28969ae0f7 | |
parent | eb52b1d8ff31a3eb48319b20de272acc26f88bdd (diff) | |
download | numpy-ea229684976538ea353908047ea2ca705c59aea1.tar.gz |
Forgot to update needs_mingw_ftime_workaround function.
-rw-r--r-- | numpy/random/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py index 6ee6efd6b..c8b0a5cf5 100644 --- a/numpy/random/setup.py +++ b/numpy/random/setup.py @@ -4,7 +4,7 @@ import sys from distutils.dep_util import newer from distutils.msvccompiler import get_build_version as get_msvc_build_version -def needs_mingw_ftime_workaround(config): +def needs_mingw_ftime_workaround(): # We need the mingw workaround for _ftime if the msvc runtime version is # 7.1 or above and we build with mingw ... # ... but we can't easily detect compiler version outside distutils command |