From 08b95d7b5581d8ceba6f4eb6c932664a8320d589 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Mon, 23 Jul 2018 17:55:34 +0200 Subject: [PATCH] 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. --- setup.py | 5 ----- setupext.py | 1 - 2 files changed, 6 deletions(-) diff --git a/setup.py b/setup.py index 03ca28762231..c7b8d6fa6b82 100644 --- a/setup.py +++ b/setup.py @@ -231,11 +231,6 @@ def run(self): fd.write( template.safe_substitute(TEMPLATE_BACKEND=default_backend)) - # Build in verbose mode if requested - if setupext.options['verbose']: - for mod in ext_modules: - mod.extra_compile_args.append('-DVERBOSE') - # Finalize the extension modules so they can get the Numpy include # dirs for mod in ext_modules: diff --git a/setupext.py b/setupext.py index 27c315fff1d7..5644bae9dab5 100644 --- a/setupext.py +++ b/setupext.py @@ -60,7 +60,6 @@ def _get_xdg_cache_dir(): # matplotlib build options, which can be altered using setup.cfg options = { 'display_status': True, - 'verbose': False, 'backend': None, 'basedirlist': None }