@@ -39,7 +39,7 @@ RUN apt-get update && \
3939# Install multiple Python versions from source. `make altinstall` is used to
4040# prevent replacing the system's default python binary.
4141# TODO(http://github.com/googleapis/gapic-generator-python/issues/2435): Remove `3.10.18` when the linked issue is resolved.
42- RUN for PYTHON_VERSION in 3.9.23 3.10.18 3.13.7; do \
42+ RUN for PYTHON_VERSION in 3.9.23 3.10.18 3.13.7 3.14.0 ; do \
4343 wget https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz && \
4444 tar -xvf Python-${PYTHON_VERSION}.tgz && \
4545 cd Python-${PYTHON_VERSION} && \
@@ -53,7 +53,7 @@ RUN for PYTHON_VERSION in 3.9.23 3.10.18 3.13.7; do \
5353# Install pip for each python version
5454# TODO(http://github.com/googleapis/gapic-generator-python/issues/2435): Remove `3.10` when the linked issue is resolved.
5555RUN wget --no-check-certificate -O /tmp/get-pip.py 'https://bootstrap.pypa.io/get-pip.py' && \
56- for PYTHON_VERSION in 3.9 3.10 3.13; do \
56+ for PYTHON_VERSION in 3.9 3.10 3.13 3.14.0 ; do \
5757 python${PYTHON_VERSION} /tmp/get-pip.py; \
5858 done && \
5959 rm /tmp/get-pip.py
@@ -86,9 +86,6 @@ ENV SYNTHTOOL_TEMPLATES="/synthtool/synthtool/gcp/templates"
8686# These are the non "-dev" versions of the libraries used in the builder.
8787RUN apt-get update && \
8888 apt-get install -y --no-install-recommends \
89- # Temporarily include git and ca-certificates to download gapic-generator from Github
90- ca-certificates \
91- git \
9289 # This is needed to avoid the following error:
9390 # `ImportError: libsqlite3.so.0: cannot open shared object file: No such file or directory`.
9491 # `libsqlite3-0` is used by the `coverage` PyPI package which is used when testing libraries
0 commit comments