mirror of
https://github.com/WeblateOrg/weblate.git
synced 2026-07-26 14:23:58 +08:00
31 lines
736 B
YAML
Vendored
31 lines
736 B
YAML
Vendored
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
# Build documentation in the docs/ directory with Sphinx
|
|
sphinx:
|
|
configuration: docs/conf.py
|
|
|
|
# Optionally build your docs in additional formats such as PDF and ePub
|
|
formats: []
|
|
|
|
build:
|
|
os: ubuntu-24.04
|
|
tools:
|
|
python: '3.14'
|
|
apt_packages:
|
|
# Graphviz is needed for sphinx.ext.graphviz
|
|
- graphviz
|
|
jobs:
|
|
post_create_environment:
|
|
- asdf plugin add uv
|
|
- asdf install uv latest
|
|
- asdf global uv latest
|
|
install:
|
|
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH uv sync --only-group docs --frozen --active --inexact
|
|
|
|
# Avoid cloning submodules
|
|
submodules:
|
|
exclude: all
|