We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aa5dd8 commit 47fffccCopy full SHA for 47fffcc
1 file changed
.readthedocs.yml
@@ -1,16 +1,20 @@
1
version: 2
2
3
-build:
4
- os: "ubuntu-22.04"
5
- tools:
6
- python: "3.12"
7
- jobs:
8
- post_create_environment:
9
- - python -m pip install poetry
10
- post_install:
11
- - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --with docs
12
-
13
sphinx:
14
builder: html
15
configuration: docs/conf.py
16
fail_on_warning: true
+
+build:
+ os: ubuntu-24.04
+ tools:
+ python: "3.12"
+ jobs:
+ pre_create_environment:
+ - asdf plugin add uv
+ - asdf install uv latest
+ - asdf global uv latest
17
+ create_environment:
18
+ - uv venv "${READTHEDOCS_VIRTUALENV_PATH}"
19
+ install:
20
+ - UV_PROJECT_ENVIRONMENT="${READTHEDOCS_VIRTUALENV_PATH}" uv sync --frozen --project packages/sdk/server-ai --group docs
0 commit comments