We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea95655 commit 5a6990aCopy full SHA for 5a6990a
Makefile
@@ -40,7 +40,8 @@ help:
40
# treated as errors, which is good to skip simple Sphinx syntax mistakes.
41
.PHONY: build
42
build: setup
43
- PYTHONWARNINGS=ignore::FutureWarning sphinx-build -j auto -W --keep-going -b html -d $(OUTPUT_DOCTREE) -D language=$(LANGUAGE) . $(OUTPUT_HTML)
+ PYTHONWARNINGS=ignore::FutureWarning,ignore::RuntimeWarning \
44
+ sphinx-build -j auto -W --keep-going -b html -d $(OUTPUT_DOCTREE) -D language=$(LANGUAGE) . $(OUTPUT_HTML)
45
@echo "Success! Open file://`pwd`/$(OUTPUT_HTML)/index.html, " \
46
"or run 'make serve' to see them in http://localhost:8000";
47
0 commit comments