Unverified Commit acac55ab authored by Tushar Sharma's avatar Tushar Sharma Committed by GitHub
Browse files

fix: bump urllib3 version in sgl container (#5360)


Signed-off-by: default avatarTushar Sharma <tusharma@nvidia.com>
parent 0b716cc6
...@@ -508,6 +508,8 @@ RUN --mount=type=bind,source=.,target=/mnt/local_src \ ...@@ -508,6 +508,8 @@ RUN --mount=type=bind,source=.,target=/mnt/local_src \
sglang==${SGLANG_VERSION} && \ sglang==${SGLANG_VERSION} && \
cd /workspace/benchmarks && \ cd /workspace/benchmarks && \
pip install --break-system-packages --no-cache . && \ pip install --break-system-packages --no-cache . && \
#TODO: Temporary change until upstream sglang runtime image is updated
pip install --no-cache-dir --break-system-packages "urllib3>=2.6.3" && \
# pip/uv bypasses umask when creating .egg-info files, but chmod -R is fast here (small directory) # pip/uv bypasses umask when creating .egg-info files, but chmod -R is fast here (small directory)
chmod -R g+w /workspace/benchmarks && \ chmod -R g+w /workspace/benchmarks && \
CUDA_MAJOR=$(nvcc --version | egrep -o 'cuda_[0-9]+' | cut -d_ -f2) && \ CUDA_MAJOR=$(nvcc --version | egrep -o 'cuda_[0-9]+' | cut -d_ -f2) && \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment