From ed0f1d2ca25857dfff5880d7f61f92a36e9d3e62 Mon Sep 17 00:00:00 2001 From: Will Shanks Date: Mon, 6 Jan 2025 12:26:10 -0500 Subject: [PATCH] Add sphinx-theme-builder as valid Python build backend (#2204) --- .github/workflows/tests.yml | 2 +- conda_smithy/linter/utils.py | 1 + news/pr-2204-sphinx-build-backend.rst | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 news/pr-2204-sphinx-build-backend.rst diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b014fdfae..f4bc641a8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,7 @@ jobs: with: fetch-depth: 0 - name: Set up Conda env - uses: mamba-org/setup-micromamba@06375d89d211a1232ef63355742e9e2e564bc7f7 + uses: mamba-org/setup-micromamba@068f1ab4b37ed9b3d9f73da7db90a0cda0a48d29 with: environment-file: environment.yml cache-environment: true 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..0059f6a27 --- /dev/null +++ b/news/pr-2204-sphinx-build-backend.rst @@ -0,0 +1,3 @@ +**Added:** + +* Added ``sphinx-theme-builder`` as a valid ``pip`` build backend. (#2204)