Skip to content

Commit 3776c55

Browse files
committed
remove capture output
1 parent 3f9b48c commit 3776c55

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.generator/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,19 @@ RUN apt-get update && \
3939
ENV 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

.generator/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)