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

patch to remove sphinx function call alternative config file #382

Merged
merged 1 commit into from
Oct 7, 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
From 164ae12550a34b8751aeef0cb676eae4e72ab610 Mon Sep 17 00:00:00 2001
From: foamyguy <foamyguy@gmail.com>
Date: Mon, 7 Oct 2024 14:51:48 -0500
Subject: [PATCH] remove deprecated sphinx theme call

---
docs/conf.py | 1 -
1 file changed, 1 deletion(-)

diff --git a/docs/conf.py b/docs/conf.py
index a393c5e..0d0e89d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -154,7 +154,6 @@ if not on_rtd: # only import and set the theme if we're building docs locally
import sphinx_rtd_theme

html_theme = "sphinx_rtd_theme"
- html_theme_path = [sphinx_rtd_theme.get_html_theme_path(), "."]
except:
html_theme = "default"
html_theme_path = ["."]
--
2.46.2

Loading