From c41ebbc08687b5c072108885b7fab66512917d9b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 3 Dec 2022 16:14:41 -0500 Subject: Replace duplicated dox_to_sphinx script with sphinxygen dependency --- scripts/meson.build | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'scripts/meson.build') diff --git a/scripts/meson.build b/scripts/meson.build index 5b04f99..be6f5e8 100644 --- a/scripts/meson.build +++ b/scripts/meson.build @@ -6,9 +6,7 @@ if get_option('strict') and not meson.is_subproject() pylint = find_program('pylint', required: get_option('tests')) black = find_program('black', required: get_option('tests')) - strict_scripts = files('benchmark.py', 'plot.py') - linty_scripts = files('dox_to_sphinx.py') - all_scripts = strict_scripts + linty_scripts + all_scripts = files('benchmark.py', 'plot.py') if is_variable('black') and black.found() black_opts = ['-l', '79', '-q', '--check'] @@ -20,6 +18,6 @@ if get_option('strict') and not meson.is_subproject() endif if is_variable('pylint') and pylint.found() - test('pylint', pylint, args: strict_scripts, suite: 'scripts') + test('pylint', pylint, args: all_scripts, suite: 'scripts') endif endif -- cgit v1.2.1