From 842fb8d626e2ea41e4371727e289547d20c75365 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Wed, 25 Sep 2024 04:17:01 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20Disable=20PyPI=20lookup=20in=20t?= =?UTF-8?q?he=20spell=20checker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ref: https://github.com/sphinx-contrib/spelling/issues/227 --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index cf4b7cd3b3..d219194bf4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -138,7 +138,8 @@ spelling_ignore_acronyms = True spelling_ignore_importable_modules = True -spelling_ignore_pypi_package_names = True +# PyPI lookup because of https://github.com/sphinx-contrib/spelling/issues/227 +spelling_ignore_pypi_package_names = False spelling_ignore_python_builtins = True spelling_ignore_wiki_words = True spelling_show_suggestions = True