From 3b6cc2f3a8bd712e6f7d80a64929d4da4239acab Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Wed, 20 Sep 2023 14:58:58 -0700 Subject: [PATCH] Hardcode tool versions in install_conda.sh --- install_conda.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/install_conda.sh b/install_conda.sh index 88878518..55cf3599 100755 --- a/install_conda.sh +++ b/install_conda.sh @@ -3,7 +3,15 @@ CONDA_INSTALLER_URL="https://repo.anaconda.com/miniconda/Miniconda3-py38_22.11.1 CONDA_INSTALLER_FILE="miniconda_installer_py38.sh" CONDA_HOME="${CONDA_HOME:-miniconda}" -TOOLS="klayout magic netgen ngspice trilinos xyce" +# The tool name format is "=". +# If you want to use the latest version, just use "". +TOOLS="" +TOOLS+="klayout=0.28.3 " +TOOLS+="magic=8.3.363 " +TOOLS+="netgen=1.5.253 " +TOOLS+="ngspice=26 " +TOOLS+="trilinos=12.12.1 " +TOOLS+="xyce=7.4" # Install miniconda if not already installed if [[ ! -d "${CONDA_HOME}/bin" ]]