From 3c99b8c3a786fc3e27435a5482ae94850ad56076 Mon Sep 17 00:00:00 2001 From: Amir Poolad Date: Thu, 3 Jul 2025 17:35:37 -0400 Subject: [PATCH] Remove system-wide installation of Sphinx Installing Sphinx using the system package manager is considered bad practice. This commit removes that from the dependency installer scripts. --- install_apt_packages.sh | 4 ---- install_dnf_packages.sh | 5 ----- 2 files changed, 9 deletions(-) diff --git a/install_apt_packages.sh b/install_apt_packages.sh index 8fc5d929ce2..b6f17063f28 100755 --- a/install_apt_packages.sh +++ b/install_apt_packages.sh @@ -41,10 +41,6 @@ sudo apt-get install -y \ default-jre \ zlib1g-dev -# Required to build the documentation -sudo apt-get install -y \ - sphinx-common - # Required for code formatting # NOTE: clang-format-18 may only be found on specific distributions. Only # install it if the distribution has this version of clang format. diff --git a/install_dnf_packages.sh b/install_dnf_packages.sh index b2a23fb7da5..f4ea958d871 100755 --- a/install_dnf_packages.sh +++ b/install_dnf_packages.sh @@ -42,11 +42,6 @@ sudo dnf install -y \ boost-filesystem \ zlib-ng-devel -# Required to build the documentation -sudo dnf install -y \ - python3-sphinx \ - python-sphinx-doc - # Required to run the analytical placement flow sudo dnf install -y \ eigen3-devel \ No newline at end of file