diff --git a/doc/developer/.readthedocs.yaml b/doc/developer/.readthedocs.yaml new file mode 100644 index 000000000000..9acbedb9cdab --- /dev/null +++ b/doc/developer/.readthedocs.yaml @@ -0,0 +1,16 @@ +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: doc/developer/conf.py + +python: + install: + - requirements: doc/requirements.txt diff --git a/doc/user/.readthedocs.yaml b/doc/user/.readthedocs.yaml new file mode 100644 index 000000000000..ed44aef552b1 --- /dev/null +++ b/doc/user/.readthedocs.yaml @@ -0,0 +1,16 @@ +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: doc/user/conf.py + +python: + install: + - requirements: doc/requirements.txt