From 8fe8d7218c18a9ab1b4e543c9d1d747535c4cdc9 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Tue, 10 Feb 2026 17:15:27 +0000 Subject: [PATCH 1/3] Update Python version for the documentation build to 3.13 --- .github/workflows/test-documentation-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-documentation-build.yml b/.github/workflows/test-documentation-build.yml index de76508ce..8f74e008e 100644 --- a/.github/workflows/test-documentation-build.yml +++ b/.github/workflows/test-documentation-build.yml @@ -11,7 +11,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.10' + python-version: '3.13' - name: Install dependencies and local packages run: python -m pip install .[docs] - name: Build HTML documentation with Sphinx From 2d90244bc5f375dbe49b30b0e656b86b1a226352 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Tue, 10 Feb 2026 17:29:49 +0000 Subject: [PATCH 2/3] Use the enthought-sphinx-theme commit that has the putative fix --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7b75c2e8c..2a31be2b3 100644 --- a/setup.py +++ b/setup.py @@ -296,7 +296,7 @@ def get_long_description(): }, extras_require={ "docs": [ - "enthought-sphinx-theme", + "enthought-sphinx-theme @ git+https://github.com/enthought/enthought-sphinx-theme.git@d86b5039c61d2a8e104bc2f351a9db17fc32396b", "Sphinx>=2.1.0", "sphinx-copybutton", ], From 3056f1d2f58f06008454fab140c61e8628552edb Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 16 Feb 2026 09:56:31 +0000 Subject: [PATCH 3/3] Revert "Use the enthought-sphinx-theme commit that has the putative fix" This reverts commit 2d90244bc5f375dbe49b30b0e656b86b1a226352. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2a31be2b3..7b75c2e8c 100644 --- a/setup.py +++ b/setup.py @@ -296,7 +296,7 @@ def get_long_description(): }, extras_require={ "docs": [ - "enthought-sphinx-theme @ git+https://github.com/enthought/enthought-sphinx-theme.git@d86b5039c61d2a8e104bc2f351a9db17fc32396b", + "enthought-sphinx-theme", "Sphinx>=2.1.0", "sphinx-copybutton", ],