-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.readthedocs.yml
More file actions
39 lines (33 loc) · 780 Bytes
/
.readthedocs.yml
File metadata and controls
39 lines (33 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
version: 2
build:
os: ubuntu-22.04
tools:
python: "3.14"
apt_packages:
- tree
jobs:
pre_create_environment:
- asdf plugin add uv
- asdf install uv latest
- asdf global uv latest
create_environment:
- uv venv "${READTHEDOCS_VIRTUALENV_PATH}"
install:
- UV_PROJECT_ENVIRONMENT="${READTHEDOCS_VIRTUALENV_PATH}" uv sync --all-extras
# pre_build:
# - python -m sphinx -b linkcheck docs/ _build/linkcheck # Fails for valid GitHub links?
python:
install:
- requirements: requirements.txt
- method: pip
path: .
extra_requirements:
- plotting
- cli
sphinx:
configuration: docs/conf.py
fail_on_warning: true
formats:
- pdf
submodules:
include: all