File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -39,18 +39,19 @@ RUN apt-get update && \
3939ENV BAZELISK_VERSION=v1.26.0
4040
4141
42- RUN for PYTHON_VERSION in 3.9.23 3.10.18 3.11.13 3.12.11 3.13.5; do \
42+ # RUN for PYTHON_VERSION in 3.9.23 3.10.18 3.11.13 3.12.11 3.13.5; do \
43+ RUN for PYTHON_VERSION in 3.13.5; do \
4344# Install Python from source
4445 wget https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz && \
4546 tar -xvf Python-${PYTHON_VERSION}.tgz && \
4647 cd Python-${PYTHON_VERSION} && \
4748 ./configure --enable-optimizations && \
4849 make altinstall && \
4950 cd / && \
50- rm -rf Python-${PYTHON_VERSION}* && \
51+ rm -rf Python-${PYTHON_VERSION}* \
5152 # Install pip using the instructions below
5253 # https://pip.pypa.io/en/stable/installation/#ensurepip
53- python${PYTHON_VERSION} -m ensurepip --upgrade \
54+ # python${PYTHON_VERSION} -m ensurepip --upgrade \
5455 ; done
5556
5657# Test Pip
Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15+ # TODO(https://github.com/googleapis/google-cloud-python/issues/14142):
16+ # Reduce this timeout by moving the installation of Python runtimes to a separate base image
1517timeout : 7200s # 2 hours
1618steps :
1719 # This step builds the Docker image.
You can’t perform that action at this time.
0 commit comments