From 85a4c7f3d5c6f5a71a705b198e3eaa9affc11ae9 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 30 Mar 2022 11:40:21 -0400 Subject: [PATCH] dont use cyext for sphinx builds if these files are stale, imports fail and the build silently excludes docstrings. also , typing / docstrings are generally in the _py version of things, so just don't include cyexts in doc builds. Change-Id: Ibec927c7646d4b870a84a297d1b199ccecf3afef --- doc/build/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/build/conf.py b/doc/build/conf.py index d6fc0642c9..10c9c98d4e 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -23,6 +23,8 @@ sys.path.insert(0, os.path.abspath("../..")) # examples sys.path.insert(0, os.path.abspath(".")) +os.environ["DISABLE_SQLALCHEMY_CEXT_RUNTIME"] = "true" + # -- General configuration -------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. -- 2.47.3