From 4d469c4efe6b7dfd53bbe529ebf8594ec3f3286b Mon Sep 17 00:00:00 2001 From: osaajani <> Date: Fri, 3 Jan 2025 23:08:59 +0100 Subject: [PATCH] Try fixing conda for macos --- .github/workflows/test_suite.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_suite.yml b/.github/workflows/test_suite.yml index 2fa45be62..296cb5dbd 100644 --- a/.github/workflows/test_suite.yml +++ b/.github/workflows/test_suite.yml @@ -15,14 +15,21 @@ jobs: # Uses Python Framework build because on macOS, Matplotlib requires it macos: runs-on: macos-13 + # Do not ignore bash profile files. From: + # https://github.com/marketplace/actions/setup-miniconda + defaults: + run: + shell: bash -l {0} strategy: matrix: python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v4.1.6 - - uses: s-weigand/setup-conda@v1.2.2 + - uses: conda-incubator/setup-miniconda@v3 with: - activate-conda: true + auto-update-conda: true + python-version: ${{ matrix.python-version }} + auto-activate-base: true - name: Install pythonw run: conda install python.app