Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: don't override python-version for conda env setup #260

Merged
merged 2 commits into from
Feb 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
Loading