From 0b9039dab5d203a85cd70de0b416ba0804e5a4f9 Mon Sep 17 00:00:00 2001 From: Jeremy Kubica <104161096+jeremykubica@users.noreply.github.com> Date: Mon, 5 Jan 2026 08:43:05 -0500 Subject: [PATCH] Fix broken tests --- docs/requirements.txt | 2 +- pyproject.toml | 4 ++-- .../requirements.txt.jinja | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index eaa78b27..dcaa23a2 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,3 @@ sphinx -sphinx-rtd-theme +sphinx-rtd-theme>=3.0 sphinx-copybutton diff --git a/pyproject.toml b/pyproject.toml index 213bfafd..7784c167 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ dynamic = ["version"] dependencies = [ "setuptools_scm", "sphinx", # Used to automatically generate documentation - "sphinx-rtd-theme", # Used to render documentation + "sphinx-rtd-theme>=3.0", # Used to render documentation "sphinx-copybutton", "pyyaml-include<3.0", ] @@ -45,7 +45,7 @@ dev = [ "sphinx", "sphinx-autoapi", "sphinx-copybutton", - "sphinx-rtd-theme", + "sphinx-rtd-theme>=3.0", ] [build-system] diff --git a/python-project-template/{% if include_docs %}docs{% endif %}/requirements.txt.jinja b/python-project-template/{% if include_docs %}docs{% endif %}/requirements.txt.jinja index bdfa9cd4..e96005e6 100644 --- a/python-project-template/{% if include_docs %}docs{% endif %}/requirements.txt.jinja +++ b/python-project-template/{% if include_docs %}docs{% endif %}/requirements.txt.jinja @@ -8,4 +8,4 @@ nbsphinx sphinx sphinx-autoapi sphinx-copybutton -sphinx-rtd-theme \ No newline at end of file +sphinx-rtd-theme>=3.0 \ No newline at end of file