We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5988124 commit d8c6591Copy full SHA for d8c6591
1 file changed
.readthedocs.yaml
@@ -7,9 +7,20 @@ version: 2
7
8
# Set the version of Python and other tools you might need
9
build:
10
- os: ubuntu-24.04
+ os: ubuntu-lts-latest
11
+ apt_packages:
12
+ # graphviz is required for sphinx.ext.graphviz
13
+ - graphviz
14
tools:
- python: "3.13"
15
+ python: "3.14"
16
+
17
+python:
18
+ # See https://docs.readthedocs.com/platform/stable/build-customization.html#install-dependencies-with-uv
19
+ install:
20
+ - method: uv
21
+ command: sync
22
+ groups:
23
+ - docs
24
25
# Build documentation in the docs/ directory with Sphinx
26
sphinx:
@@ -19,11 +30,3 @@ sphinx:
30
formats:
31
- epub
32
- pdf
-
-# Optionally declare the Python requirements required to build your docs
-python:
- install:
- - method: pip
27
- path: .
28
- extra_requirements:
29
- - docs
0 commit comments