Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ci/docker/almalinux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ RUN yum install -y sudo wget curl perl util-linux xz bzip2 git patch which perl
RUN git config --global --add safe.directory '*'
ENV PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/bin:$PATH

# 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 && \
python3 -mpip install cmake==3.28.4 && \
ln -s /usr/local/bin/cmake /usr/bin/cmake3
RUN rm -rf /usr/local/cuda-*

Expand Down
8 changes: 4 additions & 4 deletions .ci/docker/manywheel/Dockerfile_2_28
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ RUN yum install -y sudo wget curl perl util-linux xz bzip2 git patch which perl
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
# cmake-3.28.4 from pip
RUN yum install -y python3-pip && \
python3 -mpip install cmake==3.18.4 && \
python3 -mpip install cmake==3.28.4 && \
ln -s /usr/local/bin/cmake /usr/bin/cmake3

FROM base as openssl
Expand Down Expand Up @@ -133,9 +133,9 @@ RUN for cpython_version in "cp312-cp312" "cp313-cp313" "cp313-cp313t"; do \
ADD ./common/patch_libstdc.sh patch_libstdc.sh
RUN bash ./patch_libstdc.sh && rm patch_libstdc.sh

# 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 && \
python3 -mpip install cmake==3.28.4 && \
ln -sf /usr/local/bin/cmake /usr/bin/cmake3

FROM cpu_final as cuda_final
Expand Down
2 changes: 1 addition & 1 deletion requirements-build.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ setuptools==79.0.1
cmake==4.0.0
ninja==1.11.1.4
numpy==2.1.2 ; python_version < "3.14"
numpy==2.4.3 ; python_version >= "3.14"
numpy>=2.3 ; python_version >= "3.14"
packaging==25.0
pyyaml==6.0.3
requests==2.32.5
Expand Down