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

Adds loose pinning of dev docs requirements to ensure correct builds … #12466

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,13 @@ def process_docstring(app, what, name, obj, options, lines):

# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode", "m2r", "notfound.extension"]
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"m2r",
"notfound.extension",
"sphinxcontrib.jquery",
]

linkcheck_ignore = [
"https://groups.google.com/a/learningequality.org/forum/#!forum/dev"
Expand Down
7 changes: 5 additions & 2 deletions requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
-r base.txt

# These are for building the docs
sphinx

# Sphinx stack requires a version of requests that's incompatible with Morango, so downgrading
sphinx>=6,<7
sphinx-intl
sphinx-rtd-theme
# We want to ensure the latest version of sphinx-rtd-theme that has sphinxcontrib-jquery as a dependency
sphinx-rtd-theme~=2.0
sphinx-autobuild
m2r
sphinx-notfound-page
Loading