diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 172d2d8..4b8809d 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -7,10 +7,12 @@ build: os: ubuntu-24.04 tools: python: "3.13" - commands: - - asdf plugin add uv - - asdf install uv latest - - asdf global uv latest - - uv sync --group docs - - uv run python -m sphinx -T -b html -d docs/_build/doctrees -D language=en - docs $READTHEDOCS_OUTPUT/html + +python: + install: + - requirements: requirements-rtd.txt + +# Build documentation in the "docs/" directory with Sphinx +sphinx: + configuration: docs/source/conf.py + diff --git a/requirements-rtd.txt b/requirements-rtd.txt new file mode 100644 index 0000000..59b5df6 --- /dev/null +++ b/requirements-rtd.txt @@ -0,0 +1,8 @@ +httpx +sphinx>=7.0 +myst_parser>=0.13 +sphinx_copybutton +sphinx_autodoc_typehints +sphinx_rtd_theme +numpydoc +ipython