mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-07-27 19:57:02 +00:00
25 lines
554 B
YAML
25 lines
554 B
YAML
# .readthedocs.yaml
|
|
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
build:
|
|
os: "ubuntu-22.04"
|
|
tools:
|
|
python: "3.10"
|
|
jobs:
|
|
post_create_environment:
|
|
- pip install poetry
|
|
post_install:
|
|
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --only=doc
|
|
|
|
# Build documentation in the doc/main/ directory with Sphinx
|
|
sphinx:
|
|
configuration: doc/main/conf.py
|
|
|
|
# Optionally build your docs in additional formats such as PDF
|
|
formats:
|
|
- pdf
|