From 82e165b9450e0c2d8d8301c9434004a8b49ecb33 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Jan 2026 07:40:04 +0000 Subject: [PATCH 1/3] Update sphinx requirement from <7.0 to <8.0 Updates the requirements on [sphinx](https://github.com/sphinx-doc/sphinx) to permit the latest version. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/v7.4.7/CHANGES.rst) - [Commits](https://github.com/sphinx-doc/sphinx/compare/v0.1.61611...v7.4.7) --- updated-dependencies: - dependency-name: sphinx dependency-version: 7.4.7 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/requirements.txt | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 0902f67..7f13dab 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,4 @@ -sphinx<7.0 +sphinx<8.0 nbsphinx sphinx-theme pydata-sphinx-theme diff --git a/pyproject.toml b/pyproject.toml index 42ea671..f4912e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ acc = [ "numba", ] docs = [ - "sphinx<7.0", + "sphinx<8.0", "nbsphinx", "sphinx-theme", "pydata-sphinx-theme", From de3327d376d518101907031db7c90848a18288ba Mon Sep 17 00:00:00 2001 From: WEN Hao <8778305+wenh06@users.noreply.github.com> Date: Thu, 22 Jan 2026 20:33:25 +0800 Subject: [PATCH 2/3] Update sphinx version in requirements.txt --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 7f13dab..48f6398 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,4 @@ -sphinx<8.0 +sphinx nbsphinx sphinx-theme pydata-sphinx-theme From c02e90fe132178323f28bd8df5e434dd3460f9cb Mon Sep 17 00:00:00 2001 From: WEN Hao <8778305+wenh06@users.noreply.github.com> Date: Thu, 22 Jan 2026 20:34:05 +0800 Subject: [PATCH 3/3] Add support for Python 3.13 and update Sphinx dependency --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f4912e3..51d5fb4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] dependencies = [ "deprecate-kwargs", @@ -41,7 +42,7 @@ acc = [ "numba", ] docs = [ - "sphinx<8.0", + "sphinx", "nbsphinx", "sphinx-theme", "pydata-sphinx-theme",