diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index cd2f3c8ece0..5d9ca507a24 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -93,7 +93,7 @@ jobs: - name: Make Documentation working-directory: ./docs - run: make html --debug SPHINXOPTS="-W --keep-going -n" + run: make html --debug SPHINXOPTS="-W --keep-going" - name: Check External Links (Optional) working-directory: ./docs diff --git a/Makefile b/Makefile index 63cc0c43622..88d06fd7667 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ test: clean env data docs: clean FREEZE_REQUIREMENTS=1 pip install -e . --quiet -r requirements/docs.txt # apt-get install -y texlive-latex-extra dvipng texlive-pictures texlive-fonts-recommended cm-super - TOKENIZERS_PARALLELISM=false python -m sphinx -b html -W --keep-going -n docs/source docs/build + TOKENIZERS_PARALLELISM=false python -m sphinx -b html -W --keep-going docs/source docs/build env: export FREEZE_REQUIREMENTS=1 diff --git a/docs/source/conf.py b/docs/source/conf.py index c25b46b8a19..de6a6f4e6c9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -253,6 +253,7 @@ "numpy": ("https://numpy.org/doc/stable/", None), "matplotlib": ("http://matplotlib.org/stable", None), } +nitpicky = True # -- Options for to-do extension ----------------------------------------------