From bf07993c42deadb101b4756c2c206ebb80991afd Mon Sep 17 00:00:00 2001 From: jaimergp Date: Thu, 7 Sep 2023 20:02:00 +0200 Subject: [PATCH] It's Miniforge3 --- .azure-pipelines/azure-pipelines-win.yml | 2 +- .scripts/run_osx_build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 081d541baacc9..758ec7daf4626 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -16,7 +16,7 @@ jobs: scriptSource: inline script: | import urllib.request - url = 'https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge-Windows-x86_64.exe' + url = 'https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Windows-x86_64.exe' path = r"$(Build.ArtifactStagingDirectory)/Miniforge.exe" urllib.request.urlretrieve(url, path) - script: | diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh index 9423860f68651..0e11785becad3 100755 --- a/.scripts/run_osx_build.sh +++ b/.scripts/run_osx_build.sh @@ -7,7 +7,7 @@ if [[ ${CI} == "travis" ]]; then echo -en 'travis_fold:start:install_miniforge\\r' fi MINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/latest/download" -MINIFORGE_FILE="Miniforge-MacOSX-x86_64.sh" +MINIFORGE_FILE="Miniforge3-MacOSX-x86_64.sh" curl -L -O "${MINIFORGE_URL}/${MINIFORGE_FILE}" bash $MiniFORGE_FILE -b if [[ ${CI} == "travis" ]]; then