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

setup.py: Force Sphinx > 2 for readthedocs #1955

Merged
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
4 changes: 4 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ build:
os: ubuntu-20.04
tools:
python: "3.10"
apt_packages:
- graphviz
- plantuml
- pandoc

python:
install:
Expand Down
2 changes: 1 addition & 1 deletion doc/doc_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

sphinx==3.5.1
sphinx==6.1.3

# A streamlined version of devmode_requirements.txt for doc building
-e ./tools/exekall
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def make_console_script(name):
}

extras_require["doc"] = [
"sphinx >= 1.8",
# Force ReadTheDocs to use a recent version, rather than the defaults used
# for old projects.
"sphinx > 2",
"sphinx_rtd_theme >= 0.5.2",
"sphinxcontrib-plantuml",
"nbsphinx",
Expand Down