From 860f92f144cb785600f782f62a8f6f8f813a4f92 Mon Sep 17 00:00:00 2001 From: Ville Bergholm <1044345+smite@users.noreply.github.com> Date: Fri, 22 Dec 2023 16:53:00 +0200 Subject: [PATCH] Fix docs, remove unused dev tools. --- README.rst | 2 +- docs/conf.py | 14 ++++++-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/README.rst b/README.rst index 43244f86..8c8be0d0 100644 --- a/README.rst +++ b/README.rst @@ -51,4 +51,4 @@ Copyright Cirq on IQM is free software, released under the Apache License, version 2.0. -Copyright 2020–2022 Cirq on IQM developers. +Copyright 2020–2023 Cirq on IQM developers. diff --git a/docs/conf.py b/docs/conf.py index 0c031726..8cd379f7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ # -- Project information ----------------------------------------------------- project = 'Cirq on IQM' -copyright = '2020–2022, Cirq on IQM developers' +copyright = '2020–2023, Cirq on IQM developers' author = 'Cirq on IQM developers' # The short X.Y version. @@ -41,7 +41,7 @@ # -- General configuration --------------------------------------------------- # require a recent version of Sphinx -needs_sphinx = '4.5' +needs_sphinx = '6.2' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom @@ -117,11 +117,9 @@ # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. -html_theme_options = { - 'logo_only': True, -} +html_theme_options = {} -html_sidebars = {'**': ['sidebar-logo.html', 'search-field.html', 'sbt-sidebar-nav.html', 'versioning.html']} +html_sidebars = {'**': ['navbar-logo.html', 'search-field.html', 'sbt-sidebar-nav.html', 'versioning.html']} # A shorter title for the navigation bar. Default is the same as html_title. # html_short_title = None @@ -174,8 +172,8 @@ } extlinks = { - 'issue': ('https://github.com/iqm-finland/cirq-on-iqm/issues/%s', 'issue '), - 'mr': ('https://github.com/iqm-finland/cirq-on-iqm/pull/%s', 'MR '), + 'issue': ('https://github.com/iqm-finland/cirq-on-iqm/issues/%s', 'issue %s'), + 'mr': ('https://github.com/iqm-finland/cirq-on-iqm/pull/%s', 'MR %s'), }