diff options
| author | Eli Schwartz <eschwartz93@gmail.com> | 2025-01-20 09:58:06 -0500 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2025-01-20 10:01:00 -0500 |
| commit | 73c52ddcd901e03092a70d04a548b5a74c6781f4 (patch) | |
| tree | ca9f76c0c5122ee8a0c4f6f412db0bc2c0cc43b0 /docs | |
| parent | 4d4839c6ee73b89f8a6ed394fbfdf498a203d712 (diff) | |
| download | meson-73c52ddcd901e03092a70d04a548b5a74c6781f4.tar.gz | |
docs: do not require aiohttp to build
It pulls in 22 (!!!) dependencies and is only needed in CI for a trivial
lint of the HTML docs. This is a big problem for people that simply want
to compile the manpage. Let the tests fail at test time if this
dependency isn't available.
Fixes: 74aab8a42c479cdeeda9371dbd591a19d070c48e
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/meson.build b/docs/meson.build index 0ce884062..c476b59db 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -1,7 +1,7 @@ project('Meson documentation', version: '1.0') yaml_modname = get_option('unsafe_yaml') ? 'yaml' : 'strictyaml' -py = import('python').find_installation('python3', modules: [yaml_modname, 'aiohttp'], required: false) +py = import('python').find_installation('python3', modules: [yaml_modname], required: false) if not py.found() error(f'Cannot build documentation without yaml support') endif |
