From d7a6d68b89112ecb8bf9a077fbb79d8c6cb0efec Mon Sep 17 00:00:00 2001 From: pramenku <7664080+pramenku@users.noreply.github.com> Date: Sat, 4 Oct 2025 10:25:27 +0530 Subject: [PATCH 1/3] [DON'T MEGRE][rocm7.0] Disable Conda Conda env is not used for manylinux whl process which uses python venu. --- common/install_conda_docker.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/install_conda_docker.sh b/common/install_conda_docker.sh index 7020bd525..b5e1d16f7 100644 --- a/common/install_conda_docker.sh +++ b/common/install_conda_docker.sh @@ -12,12 +12,12 @@ rm $(basename "$MINICONDA_URL") export PATH=/opt/conda/bin:$PATH # First specifically install Python 3.11 which is compatible with conda 23.5.2 -conda install -y python=3.11 +#conda install -y python=3.11 # Pin conda to 23.5.2 as it's the last one compatible with openssl-1.1.1 -conda install -y conda=23.5.2 conda-build anaconda-client git ninja +#conda install -y conda=23.5.2 conda-build anaconda-client git ninja # The cmake version here needs to match with the minimum version of cmake # supported by PyTorch (3.18). There is only 3.18.2 on anaconda -/opt/conda/bin/pip3 install cmake==3.18.2 -conda remove -y --force patchelf +#/opt/conda/bin/pip3 install cmake==3.18.2 +#conda remove -y --force patchelf From 6c0878e25b8a605fd6694735cd3939a011324cab Mon Sep 17 00:00:00 2001 From: pramenku <7664080+pramenku@users.noreply.github.com> Date: Fri, 10 Oct 2025 09:33:06 +0530 Subject: [PATCH 2/3] Update Dockerfile_2_28 --- manywheel/Dockerfile_2_28 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manywheel/Dockerfile_2_28 b/manywheel/Dockerfile_2_28 index 43d3d6973..6d14dd269 100644 --- a/manywheel/Dockerfile_2_28 +++ b/manywheel/Dockerfile_2_28 @@ -119,9 +119,9 @@ FROM common as cpu_final ARG BASE_CUDA_VERSION=11.8 ARG DEVTOOLSET_VERSION=11 # Install Anaconda -ADD ./common/install_conda_docker.sh install_conda.sh -RUN bash ./install_conda.sh && rm install_conda.sh -ENV PATH /opt/conda/bin:$PATH +# ADD ./common/install_conda_docker.sh install_conda.sh +# RUN bash ./install_conda.sh && rm install_conda.sh +# ENV PATH /opt/conda/bin:$PATH # Ensure the expected devtoolset is used ENV PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/bin:$PATH ENV LD_LIBRARY_PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib64:/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib:$LD_LIBRARY_PATH From ea0769de7f095df80b2a7ef3bad082f00bff1fa8 Mon Sep 17 00:00:00 2001 From: pramenku <7664080+pramenku@users.noreply.github.com> Date: Fri, 10 Oct 2025 09:33:27 +0530 Subject: [PATCH 3/3] Update install_conda_docker.sh --- common/install_conda_docker.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/install_conda_docker.sh b/common/install_conda_docker.sh index b5e1d16f7..7020bd525 100644 --- a/common/install_conda_docker.sh +++ b/common/install_conda_docker.sh @@ -12,12 +12,12 @@ rm $(basename "$MINICONDA_URL") export PATH=/opt/conda/bin:$PATH # First specifically install Python 3.11 which is compatible with conda 23.5.2 -#conda install -y python=3.11 +conda install -y python=3.11 # Pin conda to 23.5.2 as it's the last one compatible with openssl-1.1.1 -#conda install -y conda=23.5.2 conda-build anaconda-client git ninja +conda install -y conda=23.5.2 conda-build anaconda-client git ninja # The cmake version here needs to match with the minimum version of cmake # supported by PyTorch (3.18). There is only 3.18.2 on anaconda -#/opt/conda/bin/pip3 install cmake==3.18.2 -#conda remove -y --force patchelf +/opt/conda/bin/pip3 install cmake==3.18.2 +conda remove -y --force patchelf