diff --git a/doc/source/_static/css/style.css b/doc/source/_static/css/style.css
index 701f9f57c..e3b988502 100644
--- a/doc/source/_static/css/style.css
+++ b/doc/source/_static/css/style.css
@@ -50,7 +50,7 @@ body>div>aside>div>div>div.sidebar-scroll>div>ul {
.sidebar-tree .current>.reference {
border-radius: 25px;
color: var(--sidebar-highligh-color);
- padding-bottom: 5px;
+ padding-bottom: 1px;
padding-top: 5px;
}
@@ -67,7 +67,7 @@ body>div>aside>div>div>div.sidebar-scroll>div>ul {
.sidebar-tree .current>.reference:hover {
color: var(--sidebar-highligh-color-hover);
border: 1px solid var(--sidebar-highligh-color-hover);
- padding-bottom: 4px;
+ padding-bottom: 1px;
padding-top: 4px;
}
diff --git a/doc/source/conf.py b/doc/source/conf.py
index f9418a4c1..624bdb384 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -11,6 +11,7 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import contextlib
+import datetime
import os
import shutil
import sys
@@ -44,11 +45,13 @@
# -- Project information -----------------------------------------------------
project = "Analog Devices Hardware Python Interfaces"
-copyright = "2019-2022, Analog Devices, Inc"
+year_now = datetime.datetime.now().year
+copyright = f"2019-{year_now}, Analog Devices, Inc"
author = "Travis Collins"
# The full version, including alpha/beta/rc tags
release = adi.__version__
+version = release
# -- General configuration ---------------------------------------------------
diff --git a/doc/source/index.rst b/doc/source/index.rst
index 9ecfb9988..8b8481ce7 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -68,12 +68,16 @@ Analog Devices Hardware Python Interfaces
Requirements
==================
* `libiio `_
-* `(Optional) libad9361 for AD9361 specific devices `_
+* numpy
+* (Optional) paramiko for JESD204 debugging
+* `(Optional) libad9361 for AD9361 specific devices `_
+* `(Optional) libad9166 for the CN0511 raspberry pi based DDS `_
+* `(Optional) libadrv9002 for ADRV9002 specific devices `_
Sections
==================
.. toctree::
- :maxdepth: 2
+ :maxdepth: 1
guides/quick
attr/index