From ec55ccf5fce56a5dbff197edf64134900d2f15e5 Mon Sep 17 00:00:00 2001 From: Donat Zenichev Date: Mon, 2 Oct 2023 20:38:21 +0200 Subject: [PATCH] MT#55897 RTD: start using the `.readthedocs.yaml` Beginning from the 25th Sep 2023, usage of the configuration file v2 is required. This commit introduces it. Change-Id: Ib6d154195621e5939e7d0bd2d6ca9ec62e487077 --- .readthedocs.yaml | 13 +++++++++++++ docs/requirements.txt | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 000000000..6f71fe0ed --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,13 @@ +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.10" + +sphinx: + configuration: docs/conf.py + +python: + install: + - requirements: docs/requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt index 17a686ee1..78ba8ddbf 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,2 @@ -myst_parser -sphinx_rtd_theme>=1.2 \ No newline at end of file +myst-parser==2.0.0 +sphinx-rtd-theme>=1.2 \ No newline at end of file