Skip to content

Commit

Permalink
Merge pull request #515 from analogdevicesinc/tfcollins/doc-fixes
Browse files Browse the repository at this point in the history
Minor doc fixes
  • Loading branch information
tfcollins authored Jan 10, 2024
2 parents 0b72cff + 7a0ed13 commit 4c6472e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/source/_static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -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;
}

Expand Down
5 changes: 4 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 ---------------------------------------------------
Expand Down
8 changes: 6 additions & 2 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,16 @@ Analog Devices Hardware Python Interfaces
Requirements
==================
* `libiio <http://github.com/analogdevicesinc/libiio/>`_
* `(Optional) libad9361 for AD9361 specific devices <http://github.com/analogdevicesinc/libad9361/>`_
* numpy
* (Optional) paramiko for JESD204 debugging
* `(Optional) libad9361 for AD9361 specific devices <http://github.com/analogdevicesinc/libad9361-iio/>`_
* `(Optional) libad9166 for the CN0511 raspberry pi based DDS <http://github.com/analogdevicesinc/libad9166-iio/>`_
* `(Optional) libadrv9002 for ADRV9002 specific devices <http://github.com/analogdevicesinc/libadrv9002-iio/>`_

Sections
==================
.. toctree::
:maxdepth: 2
:maxdepth: 1

guides/quick
attr/index
Expand Down

0 comments on commit 4c6472e

Please sign in to comment.