From 98585e14a45bbb062a55b3594cf892ca6ea4194a Mon Sep 17 00:00:00 2001 From: Will Shanks Date: Fri, 3 Jan 2025 14:04:52 -0500 Subject: [PATCH] Add sphinx-theme-builder as valid Python build backend See [here](https://sphinx-theme-builder.readthedocs.io/en/latest/filesystem-layout/#how-to-get-this-right) in the documentation, for example, for confirmation that sphinx-theme-builder is a Python build backend. --- conda_smithy/linter/utils.py | 1 + news/pr-2204-sphinx-build-backend.rst | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 news/pr-2204-sphinx-build-backend.rst diff --git a/conda_smithy/linter/utils.py b/conda_smithy/linter/utils.py index 9745b48be..9c87e24cd 100644 --- a/conda_smithy/linter/utils.py +++ b/conda_smithy/linter/utils.py @@ -67,6 +67,7 @@ "pymsbuild", "meson-python", "scikit-build-core", + "sphinx-theme-builder", "maturin", "jupyter_packaging", "whey", diff --git a/news/pr-2204-sphinx-build-backend.rst b/news/pr-2204-sphinx-build-backend.rst new file mode 100644 index 000000000..c122d4cad --- /dev/null +++ b/news/pr-2204-sphinx-build-backend.rst @@ -0,0 +1,3 @@ +**Added:** + +* Added ``spinx-theme-builder`` as a valid ``pip`` build backend. (2204)