Skip to content

Commit

Permalink
Fix docs warning about get_html_theme_path. (#705)
Browse files Browse the repository at this point in the history
This fixes a failure in docs builds that comes from a warning.

See rapidsai/rmm#1705 and rapidsai/rmm#1706 for more information.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - Vyas Ramasubramani (https://github.com/vyasr)

URL: #705
  • Loading branch information
bdice authored Oct 16, 2024
1 parent 27b7b66 commit 61bcb7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import datetime
import sphinx_rtd_theme

# -- Project information -----------------------------------------------------

project = "rapids-cmake"
copyright = "2021-2023, NVIDIA"
author = "NVIDIA"
copyright = f"2021-{datetime.datetime.today().year}, NVIDIA Corporation"
author = "NVIDIA Corporation"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -87,7 +88,6 @@
#

html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]

# 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
Expand Down

0 comments on commit 61bcb7d

Please sign in to comment.