From d73dcddfa2881a87177c7c406f91782fa474d793 Mon Sep 17 00:00:00 2001 From: Thomas-Otavio Peulen Date: Sun, 27 Oct 2024 10:42:18 +0100 Subject: [PATCH] Fix miniconda build There are known issues with mamba --- .github/workflows/conda-build.yml | 6 ++---- .github/workflows/release.yml | 5 ++--- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/conda-build.yml b/.github/workflows/conda-build.yml index dff78c8a..c0dddb05 100644 --- a/.github/workflows/conda-build.yml +++ b/.github/workflows/conda-build.yml @@ -24,12 +24,10 @@ jobs: - name: Set up Conda uses: conda-incubator/setup-miniconda@v3 with: - auto-update-conda: true - python-version: ${{ matrix.python-version }} - mamba-version: "*" + miniconda-version: "latest" channels: conda-forge,defaults channel-priority: true - + activate-environment: base - name: Display Conda Settings shell: bash -el {0} run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2d01ddb9..f6a9d628 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,11 +24,10 @@ jobs: - name: Set up Conda uses: conda-incubator/setup-miniconda@v3 with: - auto-update-conda: true - python-version: ${{ matrix.python-version }} - mamba-version: "*" + miniconda-version: "latest" channels: conda-forge,defaults channel-priority: true + activate-environment: base - name: Display Conda Settings shell: bash -el {0}