From c9a139e9b9e5868f52274ebeb61f17bea9233f50 Mon Sep 17 00:00:00 2001 From: Panu Lahtinen Date: Fri, 16 Feb 2024 21:13:34 +0200 Subject: [PATCH 1/2] Update CI to use Python 3.10 - 3.12 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 44ab303..1e2aa52 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: fail-fast: true matrix: os: ["windows-latest", "ubuntu-latest", "macos-latest"] - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12"] experimental: [false] include: - python-version: "3.11" From eb37c5a627d5e78ea24be3d3468082ad2bca12ff Mon Sep 17 00:00:00 2001 From: Panu Lahtinen Date: Wed, 20 Nov 2024 18:33:50 +0200 Subject: [PATCH 2/2] Switch to plain miniconda, enforce conda-forge channel --- .github/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e58b0fd..76e03e8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,11 +33,12 @@ jobs: - name: Setup Conda Environment uses: conda-incubator/setup-miniconda@v3 with: - miniforge-variant: Mambaforge miniforge-version: latest - use-mamba: true python-version: ${{ matrix.python-version }} activate-environment: test-environment + channels: conda-forge + conda-remove-defaults: true + channel-priority: strict - name: Set cache environment variables shell: bash -l {0}