Skip to content

Commit 08b95d7

Browse files
committed
Remove the unused 'verbose' option from setupext.
It only sets a compilation symbol which has become unused since the removal of PyCXX (ba40160). ... Not to be confused with the 'display_status'/'status.suppress' option, which is still used.
1 parent d9240e2 commit 08b95d7

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

setup.py

Lines changed: 0 additions & 5 deletions
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

Lines changed: 0 additions & 1 deletion
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)