diff options
author | mattip <matti.picus@gmail.com> | 2019-10-02 22:38:58 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-03 10:25:10 +0300 |
commit | 9fc355b545a0ed666e0b3e22cfb2cfe22b88f365 (patch) | |
tree | def9b99793c1b82fe9e4d9237bdb2b35756f1953 /numpy/distutils/command/build_src.py | |
parent | c0992ed4856df9fe02c2b31744a8a7e9088aedbc (diff) | |
download | numpy-9fc355b545a0ed666e0b3e22cfb2cfe22b88f365.tar.gz |
BUILD: change to build_src --verbose-cfg, runtests.py --debug-info
Diffstat (limited to 'numpy/distutils/command/build_src.py')
-rw-r--r-- | numpy/distutils/command/build_src.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/distutils/command/build_src.py b/numpy/distutils/command/build_src.py index af8cec08a..3e0522c5f 100644 --- a/numpy/distutils/command/build_src.py +++ b/numpy/distutils/command/build_src.py @@ -53,12 +53,12 @@ class build_src(build_ext.build_ext): ('inplace', 'i', "ignore build-lib and put compiled extensions into the source " + "directory alongside your pure Python modules"), - ('verbose', 'v', + ('verbose-cfg', None, "change logging level from WARN to INFO which will show all " + "compiler output") ] - boolean_options = ['force', 'inplace', 'verbose'] + boolean_options = ['force', 'inplace', 'verbose-cfg'] help_options = [] @@ -79,7 +79,7 @@ class build_src(build_ext.build_ext): self.swig_opts = None self.swig_cpp = None self.swig = None - self.verbose = None + self.verbose_cfg = None def finalize_options(self): self.set_undefined_options('build', @@ -370,7 +370,7 @@ class build_src(build_ext.build_ext): +name.split('.')[:-1])) self.mkpath(build_dir) - if self.verbose: + if self.verbose_cfg: new_level = log.INFO else: new_level = log.WARN |