File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
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 @@ -148,7 +148,7 @@ def _run_nox_sessions(sessions: List[str]):
148148 "-f" ,
149149 f"{ SOURCE_DIR } /packages/{ library_id } " ,
150150 ]
151- result = subprocess .run (command , capture_output = True , text = True , check = True )
151+ result = subprocess .run (command , text = True , check = True )
152152 logger .info (result )
153153 except Exception as e :
154154 raise ValueError (f"Failed to run the nox session: { current_session } " ) from e
You can’t perform that action at this time.
0 commit comments