8000 Make the Sphinx build error on warnings and fix all warnings by asmeurer · Pull Request #390 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

Make the Sphinx build error on warnings and fix all warnings #390

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

Merged
merged 4 commits into from
Feb 8, 2022
Merged
Changes from 1 commit
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
Next Next commit
Enable nitpicky mode in the Sphinx build
This will make Sphinx warn when there are cross-references that it cannot find
Without it, it just silently makes the text not link to anything.
  • Loading branch information
asmeurer committed Feb 8, 2022
commit 7daa04829d7d97d19f1448ab8fca4293c9ffb386
2 changes: 2 additions & 0 deletions spec/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@
"**": ["logo-text.html", "globaltoc.html", "localtoc.html", "searchbox.html"]
}

nitpicky = True

html_theme_options = {

# Set the name of the project to appear in the navigation.
Expand Down
0