From f7c6cd3db2ed2cb79f0db6c98a83ce3bc1be495e Mon Sep 17 00:00:00 2001 From: pintaoz-aws <167920275+pintaoz-aws@users.noreply.github.com> Date: Mon, 7 Oct 2024 11:08:25 -0700 Subject: [PATCH] fix: Use Miniforge to replace MambaForge (#4884) * Use Miniforge to replace MambaForge * Fix download url --- tests/integ/sagemaker/conftest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/integ/sagemaker/conftest.py b/tests/integ/sagemaker/conftest.py index a5ba724339..a0a60fc334 100644 --- a/tests/integ/sagemaker/conftest.py +++ b/tests/integ/sagemaker/conftest.py @@ -46,8 +46,8 @@ 'SHELL ["/bin/bash", "-c"]\n' "RUN apt-get update -y \ && apt-get install -y unzip curl\n\n" - "RUN curl -L -O 'https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh' \ - && bash Mambaforge-Linux-x86_64.sh -b -p '/opt/conda' \ + "RUN curl -L -O 'https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh' \ + && bash Miniforge3-Linux-x86_64.sh -b -p '/opt/conda' \ && /opt/conda/bin/conda init bash\n\n" "ENV PATH $PATH:/opt/conda/bin\n" "RUN mamba create -n integ_test_env python={py_version} -y \ @@ -86,8 +86,8 @@ 'SHELL ["/bin/bash", "-c"]\n' "RUN apt-get update -y \ && apt-get install -y unzip curl\n\n" - "RUN curl -L -O 'https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh' \ - && bash Mambaforge-Linux-x86_64.sh -b -p '/opt/conda' \ + "RUN curl -L -O 'https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh' \ + && bash Miniforge3-Miniforge3-Linux-x86_64.sh -b -p '/opt/conda' \ && /opt/conda/bin/conda init bash\n\n" "ENV PATH $PATH:/opt/conda/bin\n" "COPY {source_archive} ./\n"