diff options
author | David Robillard <d@drobilla.net> | 2023-09-02 19:33:23 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-02 19:33:23 -0400 |
commit | fc9c89c66dcdfe296e3b59344cddf4ba52b25be6 (patch) | |
tree | b96198966d515824cb1d248dd8b5c81c7b05462e | |
parent | 3d880e00f3a0d7129b642002c3fb51ddbb56ac96 (diff) | |
download | zix-fc9c89c66dcdfe296e3b59344cddf4ba52b25be6.tar.gz zix-fc9c89c66dcdfe296e3b59344cddf4ba52b25be6.tar.bz2 zix-fc9c89c66dcdfe296e3b59344cddf4ba52b25be6.zip |
Fix documentation build in a virtualenv
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | doc/meson.build | 3 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,9 @@ +zix (0.4.1) unstable; urgency=medium + + * Fix documentation build in a virtualenv + + -- David Robillard <d@drobilla.net> Sat, 02 Sep 2023 23:32:38 +0000 + zix (0.4.0) stable; urgency=medium * Initial release diff --git a/doc/meson.build b/doc/meson.build index 492b84e..11dad4f 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -24,7 +24,8 @@ if build_docs # Warn if the "official" theme isn't present pymod = import('python') doc_modules = ['sphinx_lv2_theme'] - if not pymod.find_installation(modules: doc_modules, required: false).found() + py = pymod.find_installation('python3', modules: doc_modules, required: false) + if not py.found() warning('Missing sphinx_lv2_theme module, falling back to alabaster') endif diff --git a/meson.build b/meson.build index 6bac25c..1dc5f5f 100644 --- a/meson.build +++ b/meson.build @@ -12,7 +12,7 @@ project( ], license: 'ISC', meson_version: '>= 0.56.0', - version: '0.4.0', + version: '0.4.1', ) zix_src_root = meson.current_source_dir() |