Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to not use removed imports #127

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

# -- Non stdlib imports --------------------------------------------------------
from sunkit_instruments import __version__ # NOQA
from sunpy_sphinx_theme import PNG_ICON # NOQA

# -- Project information -------------------------------------------------------
project = "sunkit_instruments"
Expand Down Expand Up @@ -85,7 +86,7 @@
default_role = "obj"

# -- Options for HTML output ---------------------------------------------------
from sunpy_sphinx_theme.conf import * # NOQA
html_theme = "sunpy"

# -- Graphviz Output ------------------------------------------------------------
graphviz_output_format = "svg"
Expand All @@ -105,8 +106,7 @@
"examples_dirs": os.path.join("..", "examples"),
"gallery_dirs": os.path.join("generated", "gallery"),
"matplotlib_animations": True,
# Comes from the theme.
"default_thumb_file": png_icon,
"default_thumb_file": PNG_ICON,
"abort_on_example_error": False,
"plot_gallery": "True",
"remove_config_comments": True,
Expand Down
Loading