From 332df06b5a53a7f33facc5fbc6bae5265d115475 Mon Sep 17 00:00:00 2001 From: Genevieve Buckley <30920819+GenevieveBuckley@users.noreply.github.com> Date: Tue, 21 May 2024 18:24:36 +1000 Subject: [PATCH] Fix problem where RTD displays full release version string (eg: X.Y.Z.dev0+gXXXXXX)., not shorter X.Y.Z version --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 27dcdc81..a16cd882 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -130,11 +130,11 @@ # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -#html_title = None +html_title = f"{project} {version} documentation" # A shorter title for the navigation bar. Default is the same as # html_title. -#html_short_title = None +html_short_title = f"{project} docs" # The name of an image file (relative to this directory) to place at the # top of the sidebar.