Skip to content

Commit e9feb7c

Browse files
authored
Merge pull request #11751 from anntzer/setupext-verbose
Remove the unused 'verbose' option from setupext.
2 parents 991f996 + 08b95d7 commit e9feb7c

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

setup.py

-5
Original file line numberDiff line numberDiff line change
@@ -231,11 +231,6 @@ def run(self):
231231
fd.write(
232232
template.safe_substitute(TEMPLATE_BACKEND=default_backend))
233233

234-
# Build in verbose mode if requested
235-
if setupext.options['verbose']:
236-
for mod in ext_modules:
237-
mod.extra_compile_args.append('-DVERBOSE')
238-
239234
# Finalize the extension modules so they can get the Numpy include
240235
# dirs
241236
for mod in ext_modules:

setupext.py

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ def _get_xdg_cache_dir():
6060
# matplotlib build options, which can be altered using setup.cfg
6161
options = {
6262
'display_status': True,
63-
'verbose': False,
6463
'backend': None,
6564
'basedirlist': None
6665
}

0 commit comments

Comments
 (0)