diff options
author | Marten van Kerkwijk <mhvk@astro.utoronto.ca> | 2019-02-03 19:23:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-03 19:23:29 -0500 |
commit | c009e1b98189fc13f78609fdfbb719a1e6b3e385 (patch) | |
tree | 330a99d043e5d761356e80e664b4d824718441ac | |
parent | 09e04dcbe3d0c836437b2d4745b353b256ec6265 (diff) | |
parent | 35cc57f391512ceb146b8844eb39516bca78b786 (diff) | |
download | numpy-c009e1b98189fc13f78609fdfbb719a1e6b3e385.tar.gz |
Merge pull request #12894 from eric-wieser/distutils-broken-import
MAINT: Removed unused and confusingly indirect imports from mingw32ccompiler
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index e6bbe1996..c0d844d44 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -29,7 +29,6 @@ else: import distutils.cygwinccompiler from distutils.version import StrictVersion -from numpy.distutils.ccompiler import gen_preprocess_options, gen_lib_options from distutils.unixccompiler import UnixCCompiler from distutils.msvccompiler import get_build_version as get_build_msvc_version from distutils.errors import (DistutilsExecError, CompileError, |