From e3b3a8bf8ca4b640285584eacc290ec4737ab1df Mon Sep 17 00:00:00 2001 From: Till Hartmann Date: Thu, 13 Feb 2025 16:08:34 +0100 Subject: [PATCH] ci: don't override python-version for conda env setup (#260) --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c83f20a1..9c76e55c 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 }} @@ -88,7 +89,8 @@ jobs: with: channels: conda-forge,bioconda,nodefaults environment-file: 'environment.yaml' - python-version: ${{ matrix.python-version }} + # see above + # python-version: ${{ matrix.python-version }} - name: Set up Python run: uv python install ${{ matrix.python-version }}