From 45b9868ad5a666e1b1fa442b4ad8e347c92b8995 Mon Sep 17 00:00:00 2001 From: Till Hartmann Date: Thu, 13 Feb 2025 15:51:16 +0100 Subject: [PATCH] ci: don't override python-version for conda env setup --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c83f20a1..7babfc31 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,7 +45,8 @@ jobs: with: channels: conda-forge,bioconda,nodefaults environment-file: 'environment.yaml' - python-version: ${{ matrix.python-version }} + # overriding the python-version here seems to break due to issues with strings/quotes, see https://github.com/bihealth/cubi-tk/actions/runs/13308587922/job/37169672255?pr=258#step:5:386 + # python-version: ${{ matrix.python-version }} - name: Set up Python run: uv python install ${{ matrix.python-version }}