Skip to content

Commit

Permalink
Try using pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
emilydolson committed Jun 11, 2023
1 parent 62a618d commit 3d1e2c4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -19,4 +19,4 @@ sphinx:
# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: doc/requirements.txt
- requirements: doc/requirements.txt
6 changes: 5 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import sphinx_rtd_theme
import subprocess
import sys
import textwrap

# -- General configuration ---------------------------------------------

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 3d1e2c4

Please sign in to comment.