From 1516bb169dda734933711143c6a57982e144c0b7 Mon Sep 17 00:00:00 2001 From: James Carr Date: Mon, 14 Jun 2021 18:12:35 +0100 Subject: [PATCH] Trim autodoc_mock_imports to minimum needed for docs to build --- docs/conf.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index baa8227..7c699ab 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,13 +25,7 @@ extensions = [ # Uncomment the below if you use native CircuitPython modules such as # digitalio, micropython and busio. List the modules you use. Without it, the # autodoc module docs will fail to generate with a warning. -autodoc_mock_imports = [ - "busio", - "digitalio", - "displayio", - "microcontroller", - "terminalio", -] +autodoc_mock_imports = ["displayio", "terminalio"] intersphinx_mapping = { -- 2.49.0