@@ -55,11 +55,12 @@ RUN curl https://pyenv.run | bash
5555
5656# Install Python 3.9 and 3.10 with shared library support
5757ENV PYTHON_CONFIGURE_OPTS="--enable-shared"
58- RUN pyenv install 3.9 && pyenv install 3.10 && pyenv global 3.9
58+ RUN pyenv install 3.9 && pyenv install 3.10 && pyenv install 3.13 && pyenv global 3.9
5959
6060# Create symlinks for python3.9 and python3.10 so they can be called directly
6161RUN ln -s $(pyenv prefix 3.9)/bin/python /usr/local/bin/python3.9 && \
62- ln -s $(pyenv prefix 3.10)/bin/python /usr/local/bin/python3.10
62+ ln -s $(pyenv prefix 3.10)/bin/python /usr/local/bin/python3.10 && \
63+ ln -s $(pyenv prefix 3.13)/bin/python /usr/local/bin/python3.13
6364
6465RUN mkdir -p /root/.taiga && mkdir -p /root/.local/bin
6566
@@ -85,12 +86,12 @@ RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.c
8586
8687# install conseq in virtual environment
8788COPY conseq-settings /root/.conseq
88- RUN python3.9 -m venv /install/conseq && \
89- /install/conseq/bin/pip install https://github.com/broadinstitute/conseq/releases/download/ v2.0.3/conseq- 2.0.3 .tar.gz && \
89+ RUN python3.13 -m venv /install/conseq && \
90+ /install/conseq/bin/pip install https://github.com/broadinstitute/conseq/archive/refs/tags/ v2.2.0.tar.gz && \
9091 ln -s /install/conseq/bin/conseq /root/.local/bin
9192
9293# copy the conseq helper into known location
93- RUN cp /install/conseq/lib/python3.9 /site-packages/conseq/helper.py /helper.py
94+ RUN cp /install/conseq/lib/python3.13 /site-packages/conseq/helper.py /helper.py
9495
9596# install Poetry
9697RUN python3.9 -m venv /install/poetry && \
0 commit comments