From 2e7ec94e2e34ad911f318193a888c0415416e7e2 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Tue, 11 Jun 2024 09:22:23 -0700 Subject: [PATCH] Remove text builds of documentation (#601) This PR removes text builds of the documentation, which we do not currently use for anything. Contributes to https://github.com/rapidsai/build-planning/issues/71. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Jake Awe (https://github.com/AyodeAwe) URL: https://github.com/rapidsai/cuxfilter/pull/601 --- ci/build_docs.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 8c6bf835..6d39b97c 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -31,10 +31,8 @@ export RAPIDS_DOCS_DIR="$(mktemp -d)" rapids-logger "Build Python docs" pushd docs sphinx-build -b dirhtml ./source _html -sphinx-build -b text ./source _text -mkdir -p "${RAPIDS_DOCS_DIR}/cuxfilter/"{html,txt} +mkdir -p "${RAPIDS_DOCS_DIR}/cuxfilter/"html mv _html/* "${RAPIDS_DOCS_DIR}/cuxfilter/html" -mv _text/* "${RAPIDS_DOCS_DIR}/cuxfilter/txt" popd rapids-upload-docs