From 5d7464da88e7c7aed4929fffce229195e39e495b Mon Sep 17 00:00:00 2001 From: Timo Reents Date: Mon, 19 Jan 2026 12:29:50 +0100 Subject: [PATCH 1/3] Fix RTD configuration --- .readthedocs.yml | 1 - docs/requirements_for_rtd.txt | 1 - pyproject.toml | 3 +++ 3 files changed, 3 insertions(+), 2 deletions(-) delete mode 100644 docs/requirements_for_rtd.txt diff --git a/.readthedocs.yml b/.readthedocs.yml index 9da4ebc..30ee0af 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -13,7 +13,6 @@ build: python: install: - - requirements: docs/requirements_for_rtd.txt - method: pip path: . extra_requirements: diff --git a/docs/requirements_for_rtd.txt b/docs/requirements_for_rtd.txt deleted file mode 100644 index d170e1a..0000000 --- a/docs/requirements_for_rtd.txt +++ /dev/null @@ -1 +0,0 @@ -setuptools>41 diff --git a/pyproject.toml b/pyproject.toml index e81b849..bd69aec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,9 @@ dev = [ "prospector==1.11.0", "pytest==7.3.1", ] +docs = [ + "sphinx<7.2", +] [tool.ruff.format] quote-style = 'single' From 0222ace50cc86fb2c72c5f8d288f16ee2dd98900 Mon Sep 17 00:00:00 2001 From: Timo Reents Date: Mon, 19 Jan 2026 13:24:28 +0100 Subject: [PATCH 2/3] Update version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bd69aec..d2645f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ dev = [ "pytest==7.3.1", ] docs = [ - "sphinx<7.2", + "sphinx~=7.1.0", ] [tool.ruff.format] From 5b8d163eff903ddb68690086156576eb26e6cdfc Mon Sep 17 00:00:00 2001 From: Timo Reents Date: Thu, 29 Jan 2026 11:46:53 +0100 Subject: [PATCH 3/3] Update RTD extra requirements --- .readthedocs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.readthedocs.yml b/.readthedocs.yml index 30ee0af..d963b25 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -17,6 +17,7 @@ python: path: . extra_requirements: - 'bz' + - 'docs' sphinx: configuration: 'docs/source/conf.py'