From 9470832fd40fdd659195577ff8fdf37dc8b515a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Dec 2025 22:42:18 +0000 Subject: [PATCH 1/2] chore(deps): bump sphinx from 7.4.7 to 9.0.4 Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 7.4.7 to 9.0.4. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst) - [Commits](https://github.com/sphinx-doc/sphinx/compare/v7.4.7...v9.0.4) --- updated-dependencies: - dependency-name: sphinx dependency-version: 9.0.4 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1396f24..133807a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,5 +6,5 @@ antsibull-docs >= 2.0.0, < 3.0.0 ansible-pygments==0.1.2 -sphinx==7.4.7 +sphinx==9.0.4 sphinx-ansible-theme==0.10.4 From 628c497f43eabb6f72c39b1539d87b8ef71b8b3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20B=C3=A4rlocher?= Date: Sat, 20 Dec 2025 23:49:16 +0100 Subject: [PATCH 2/2] chore(deps): add sphinx-rtd-theme>=3.1.0rc1 for Sphinx 9.0 compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Dependabot PR to upgrade Sphinx from 7.4.7 to 9.0.4 was failing in CI because sphinx-rtd-theme (a transitive dependency of sphinx-ansible-theme) didn't support Sphinx 9.x in versions < 3.1.0rc1. This commit explicitly pins sphinx-rtd-theme to version 3.1.0rc1 or higher, which added support for Sphinx 9.x according to the changelog. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 133807a..4a48b17 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,3 +8,4 @@ antsibull-docs >= 2.0.0, < 3.0.0 ansible-pygments==0.1.2 sphinx==9.0.4 sphinx-ansible-theme==0.10.4 +sphinx-rtd-theme>=3.1.0rc1