From bfef518217b12ce75d721599b6a1a5bcffa64cdb Mon Sep 17 00:00:00 2001 From: cpattigi Date: Wed, 1 Apr 2026 16:48:53 +0530 Subject: [PATCH 1/4] fix cmake compatibilty(3.18.4.post1) --- manywheel/Dockerfile_2_28 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manywheel/Dockerfile_2_28 b/manywheel/Dockerfile_2_28 index bee0f2b2f..b17cc3238 100644 --- a/manywheel/Dockerfile_2_28 +++ b/manywheel/Dockerfile_2_28 @@ -18,7 +18,7 @@ RUN for cpython_version in "cp312-cp312" "cp313-cp313" "cp313-cp313t"; do \ # cmake-3.18.4 from pip RUN yum install -y python3-pip && \ - python3 -mpip install cmake==3.18.4 && \ + python3 -mpip install cmake==3.18.4.post1 && \ ln -s /usr/local/bin/cmake /usr/bin/cmake3 FROM base as openssl @@ -127,7 +127,7 @@ ENV LD_LIBRARY_PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib64:/op # cmake-3.18.4 from pip; force in case cmake3 already exists RUN yum install -y python3-pip && \ - python3 -mpip install cmake==3.18.4 && \ + python3 -mpip install cmake==3.18.4.post1 && \ ln -sf /usr/local/bin/cmake /usr/bin/cmake3 FROM cpu_final as cuda_final From 94fc0354ab1157f1e30fc02bbb9fb44d77d78056 Mon Sep 17 00:00:00 2001 From: cpattigi Date: Wed, 1 Apr 2026 17:14:36 +0530 Subject: [PATCH 2/4] update cmake==3.28.4 --- manywheel/Dockerfile_2_28 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manywheel/Dockerfile_2_28 b/manywheel/Dockerfile_2_28 index b17cc3238..6f840b61e 100644 --- a/manywheel/Dockerfile_2_28 +++ b/manywheel/Dockerfile_2_28 @@ -16,9 +16,9 @@ RUN for cpython_version in "cp312-cp312" "cp313-cp313" "cp313-cp313t"; do \ /opt/python/${cpython_version}/bin/python -m pip install setuptools wheel; \ done; -# cmake-3.18.4 from pip +# cmake-3.28.4 from pip RUN yum install -y python3-pip && \ - python3 -mpip install cmake==3.18.4.post1 && \ + python3 -mpip install cmake==3.28.4 && \ ln -s /usr/local/bin/cmake /usr/bin/cmake3 FROM base as openssl @@ -125,9 +125,9 @@ ARG DEVTOOLSET_VERSION=13 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 -# cmake-3.18.4 from pip; force in case cmake3 already exists +# cmake-3.28.4 from pip; force in case cmake3 already exists RUN yum install -y python3-pip && \ - python3 -mpip install cmake==3.18.4.post1 && \ + python3 -mpip install cmake==3.28.4 && \ ln -sf /usr/local/bin/cmake /usr/bin/cmake3 FROM cpu_final as cuda_final From adc32fb5a2fa0e930094a3c5a7b61ab2ecbdfac7 Mon Sep 17 00:00:00 2001 From: cpattigi Date: Tue, 7 Apr 2026 13:12:23 +0530 Subject: [PATCH 3/4] upgrade pip before installing cmake==3.28.4 --- manywheel/Dockerfile_2_28 | 1 + 1 file changed, 1 insertion(+) diff --git a/manywheel/Dockerfile_2_28 b/manywheel/Dockerfile_2_28 index 6f840b61e..646650663 100644 --- a/manywheel/Dockerfile_2_28 +++ b/manywheel/Dockerfile_2_28 @@ -18,6 +18,7 @@ RUN for cpython_version in "cp312-cp312" "cp313-cp313" "cp313-cp313t"; do \ # cmake-3.28.4 from pip RUN yum install -y python3-pip && \ + python3 -m pip install --upgrade pip && \ python3 -mpip install cmake==3.28.4 && \ ln -s /usr/local/bin/cmake /usr/bin/cmake3 From a87b37d02d1d6fc869ffd87f833ef953086cf64a Mon Sep 17 00:00:00 2001 From: cpattigi Date: Tue, 7 Apr 2026 13:43:52 +0530 Subject: [PATCH 4/4] upgrade pip --- manywheel/Dockerfile_2_28 | 1 + 1 file changed, 1 insertion(+) diff --git a/manywheel/Dockerfile_2_28 b/manywheel/Dockerfile_2_28 index 646650663..c1e96d5ed 100644 --- a/manywheel/Dockerfile_2_28 +++ b/manywheel/Dockerfile_2_28 @@ -128,6 +128,7 @@ ENV LD_LIBRARY_PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib64:/op # cmake-3.28.4 from pip; force in case cmake3 already exists RUN yum install -y python3-pip && \ + python3 -m pip install --upgrade pip && \ python3 -mpip install cmake==3.28.4 && \ ln -sf /usr/local/bin/cmake /usr/bin/cmake3