From 516a477a770de14eafaa4eca38486b477440f89e Mon Sep 17 00:00:00 2001 From: TunaLobster Date: Fri, 27 Sep 2024 18:10:14 -0500 Subject: [PATCH] Setup: Remove no longer needed bash python version check for Sphinx --- Sphinxsetup.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Sphinxsetup.sh b/Sphinxsetup.sh index a8e456b7ef..fc68368440 100755 --- a/Sphinxsetup.sh +++ b/Sphinxsetup.sh @@ -38,13 +38,6 @@ if [ "$(python --version)" == "Python 3.6.9" ]; then GET_PIP_URL="https://bootstrap.pypa.io/pip/3.6/get-pip.py" fi -PYTHON_VERSION=$(python3 --version | cut -d' ' -f2) -if [[ "${PYTHON_VERSION:0:3}" = "3.8" ]]; then - SPHINX_VERSION="7.1.2" -else - SPHINX_VERSION="7.2.6" -fi - curl "$GET_PIP_URL" -o get-pip.py python3 get-pip.py rm -f get-pip.py