From d349c12f5371e1dc825151bee23d382acd95cd92 Mon Sep 17 00:00:00 2001 From: Jacob Alheid Date: Mon, 9 Jun 2025 14:22:50 -0700 Subject: [PATCH] docs(rtd): updated configuration for Python 3.13 and fixed issue with building --- .readthedocs.yaml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 3ffcc21..60cc25e 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ version: 2 build: os: ubuntu-24.04 tools: - python: "3.12" + python: "3.13" jobs: pre_create_environment: - asdf plugin add uv @@ -17,20 +17,10 @@ build: create_environment: - uv venv "${READTHEDOCS_VIRTUALENV_PATH}" install: - - UV_PROJECT_ENVIRONMENT="${READTHEDOCS_VIRTUALENV_PATH}" uv sync --frozen --all-extras + - UV_PROJECT_ENVIRONMENT="${READTHEDOCS_VIRTUALENV_PATH}" uv sync --frozen --all-extras --dev --group docs # Build documentation in the "docs/" directory with Sphinx sphinx: configuration: docs/conf.py # Fail on all warnings to avoid broken references fail_on_warning: true - -# Optionally build your docs in additional formats -formats: - - pdf - - epub - -# Python requirements required to build your documentation -python: - install: - - requirements: docs/requirements.txt