From 3d1e2c4fb3ddca87daa3d7c37d778ed4b5bd35df Mon Sep 17 00:00:00 2001 From: Emily Dolson Date: Sun, 11 Jun 2023 17:08:33 -0400 Subject: [PATCH] Try using pypy --- .readthedocs.yaml | 4 ++-- doc/conf.py | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 637e12091b..1cdb189c86 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -9,7 +9,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.10" + python: "pypy3.9" # Build documentation in the docs/ directory with Sphinx @@ -19,4 +19,4 @@ sphinx: # Optionally declare the Python requirements required to build your docs python: install: - - requirements: doc/requirements.txt \ No newline at end of file + - requirements: doc/requirements.txt diff --git a/doc/conf.py b/doc/conf.py index af7fe26e79..d53e238192 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -22,6 +22,7 @@ import sphinx_rtd_theme import subprocess import sys +import textwrap # -- General configuration --------------------------------------------- @@ -60,7 +61,10 @@ # TIP: if using the sphinx-bootstrap-theme, you need # "treeViewIsBootstrap": True, "exhaleExecutesDoxygen": True, - "exhaleDoxygenStdin": "INPUT = ../include" + "exhaleDoxygenStdin": textwrap.dedent(""" + INPUT = ../include + EXCLUDE_SYMBOLS += internal + """) } # Tell sphinx what the primary language being documented is.