diff --git a/docs/source/conf.py b/docs/source/conf.py
index 19c14091888489634ba9b25aaf5121f47a5923b9..fe189ddfe5418e503042866cd2cbfdb5155710b0 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -81,7 +81,10 @@ templates_path = ['_templates']
 # List of patterns, relative to source directory, that match files and
 # directories to ignore when looking for source files.
 # This pattern also affects html_static_path and html_extra_path.
-exclude_patterns: list[str] = []
+
+# Disable specific typing until build server supports python 3.9
+# exclude_patterns: list[str] = []
+exclude_patterns = []
 
 
 # -- Options for HTML output -------------------------------------------------