2021-11-04 21:06:49 +03:00
|
|
|
# Read the Docs configuration file
|
|
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
|
|
|
|
# Required
|
|
|
|
version: 2
|
|
|
|
|
2023-05-08 17:41:51 +03:00
|
|
|
# Set the version of Python and other tools you might need
|
|
|
|
build:
|
|
|
|
os: ubuntu-22.04
|
|
|
|
tools:
|
2024-03-18 21:55:00 +03:00
|
|
|
python: "3.12"
|
2024-10-07 21:43:09 +03:00
|
|
|
commands:
|
|
|
|
- asdf plugin add uv
|
|
|
|
- asdf install uv latest
|
|
|
|
- asdf global uv latest
|
|
|
|
- uv venv
|
|
|
|
- uv pip install .[docs]
|
|
|
|
- .venv/bin/python -m sphinx -T -b html -d docs/_build/doctrees -D language=en docs $READTHEDOCS_OUTPUT/html
|
2023-05-08 17:41:51 +03:00
|
|
|
|
2021-11-04 21:06:49 +03:00
|
|
|
# Build documentation in the docs/ directory with Sphinx
|
|
|
|
sphinx:
|
|
|
|
configuration: docs/conf.py
|