Skip to content

Commit 27ec28c

Browse files
committed
Try python 3.14
1 parent 711fa1c commit 27ec28c

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

features/src/workbench-tools/install.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set -o xtrace
1111
readonly CLOUD="${CLOUD:-""}"
1212
readonly USERNAME="${USERNAME:-"root"}"
1313
readonly LIB_ENV="${LIBENV:-"/opt/conda/envs/workbench-ds"}"
14-
readonly LIB_PYTHON_VERSION="${LIBPYTHONVERSION:-"3.10"}"
14+
readonly LIB_PYTHON_VERSION="${LIBPYTHONVERSION:-"3.14"}"
1515
USER_HOME_DIR="${USERHOMEDIR:-"/home/${USERNAME}"}"
1616
if [[ "${USER_HOME_DIR}" == "/home/root" ]]; then
1717
USER_HOME_DIR="/root"
@@ -72,21 +72,21 @@ fi
7272
# Install the samtools family of tools in a separate environment since some of
7373
# the other tools depend on old versions of these.
7474
CONDA_PACKAGES_1=(
75-
"bioconda::bcftools"
76-
"bioconda::htslib" # includes bgzip and tabix
77-
"bioconda::samtools"
75+
"bioconda::bcftools>=1.23"
76+
"bioconda::htslib>=1.23" # includes bgzip and tabix
77+
"bioconda::samtools>=1.23"
7878
)
7979

8080
# Environment 2 contains the genomics CLI tools. They will be added to the
8181
# PATH but will not be usable as Python libraries.
8282
CONDA_PACKAGES_2=(
83-
"conda-forge::python=3.10"
83+
"conda-forge::python"
8484
"conda-forge::pip"
85-
"conda-forge::perl==5.32.1"
85+
"conda-forge::perl>=5.32"
8686
"bioconda::bedtools"
8787
"conda-forge::bgenix"
8888
"conda-forge::cromwell"
89-
"bioconda::ensembl-vep>=115.1"
89+
"bioconda::ensembl-vep>=115"
9090
"bioconda::nextflow"
9191
"bioconda::plink"
9292
"bioconda::plink2"

0 commit comments

Comments
 (0)