From 18fcd5010a3949c2ab5310754c58a58cfa9750bc Mon Sep 17 00:00:00 2001 From: Anton <100830759+antonwolfy@users.noreply.github.com> Date: Wed, 29 Oct 2025 13:40:50 +0100 Subject: [PATCH] Explicitly set python version in GitHub workflow for testing with `oneMath` (#2643) The PR updates `conda-incubator/setup-miniconda` step in the GH workflow for testing with `oneMath` to explicitly set python version the same as defined in testing matrix, otherwise the latest available python will be taken. --- .github/workflows/check-onemath.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/check-onemath.yaml b/.github/workflows/check-onemath.yaml index 42454ecfcc4..293a7523769 100644 --- a/.github/workflows/check-onemath.yaml +++ b/.github/workflows/check-onemath.yaml @@ -100,6 +100,7 @@ jobs: miniforge-version: latest use-mamba: 'true' conda-remove-defaults: 'true' + python-version: ${{ matrix.python }} environment-file: ${{ env.environment-file }} activate-environment: ${{ env.test-env-name }} @@ -110,6 +111,7 @@ jobs: miniforge-version: latest use-mamba: 'true' conda-remove-defaults: 'true' + python-version: ${{ matrix.python }} environment-file: ${{ env.environment-file }} activate-environment: ${{ env.test-env-name }} @@ -204,6 +206,7 @@ jobs: miniforge-version: latest use-mamba: 'true' conda-remove-defaults: 'true' + python-version: ${{ matrix.python }} environment-file: ${{ env.environment-file }} activate-environment: ${{ env.test-env-name }} @@ -214,6 +217,7 @@ jobs: miniforge-version: latest use-mamba: 'true' conda-remove-defaults: 'true' + python-version: ${{ matrix.python }} environment-file: ${{ env.environment-file }} activate-environment: ${{ env.test-env-name }}