From 90ce4201d0fdeedb7095e19d314c2e8cefc2ebc7 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 10 Jun 2025 22:25:53 +0200 Subject: [PATCH 1/2] Dependencies: Unblock newer versions of Sphinx --- CHANGES.rst | 2 ++ common-build/requirements.txt | 2 +- docs/requirements.txt | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 658dac7..865e60c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,8 @@ Changes Unreleased ========== +- Dependencies: Unblock newer versions of Sphinx + 2.1.2 - 2024/02/28 ================== diff --git a/common-build/requirements.txt b/common-build/requirements.txt index 3492b67..3e970fd 100644 --- a/common-build/requirements.txt +++ b/common-build/requirements.txt @@ -9,4 +9,4 @@ sphinx-autobuild==2021.3.14 # These versions should match the Read The Docs environment (please update if # you notice this is not the case) setuptools>=41.1.0 -sphinx>=3,<6 +sphinx>=3,<9 diff --git a/docs/requirements.txt b/docs/requirements.txt index f96ef2a..55e2a85 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,2 @@ -sphinx>=3,<6 +sphinx>=3,<9 crate-docs-theme From 4f2a00ca1e2a8573a1da40b05a0cd80d89d48d43 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 10 Jun 2025 22:26:24 +0200 Subject: [PATCH 2/2] CI: Use Python 3.13 --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2fb3400..98bac08 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -27,7 +27,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.12' + python-version: '3.13' - name: Build docs run: | cd docs && make check