Skip to content

Commit e57a096

Browse files
authored
Merge branch 'dev' into fix-create-params
2 parents 049990b + 27659c5 commit e57a096

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.7.1
3+
rev: v0.7.3
44
hooks:
55
- id: ruff # linter
66
args: [--fix, --exit-non-zero-on-fix] # sort imports and fix

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
- add `--dir/-d` option to schema commands ([#3247](https://github.com/nf-core/tools/pull/3247))
3737
- Update pre-commit hook astral-sh/ruff-pre-commit to v0.7.1 ([#3250](https://github.com/nf-core/tools/pull/3250))
3838
- handle new schema structure in `nf-core pipelines create-params-file` ([#3276](https://github.com/nf-core/tools/pull/3276))
39+
- Update Gitpod image to use Miniforge instead of Miniconda([#3274](https://github.com/nf-core/tools/pull/3274))
40+
- Update pre-commit hook astral-sh/ruff-pre-commit to v0.7.3 ([#3275](https://github.com/nf-core/tools/pull/3275))
3941

4042
## [v3.0.2 - Titanium Tapir Patch](https://github.com/nf-core/tools/releases/tag/3.0.2) - [2024-10-11]
4143

nf_core/gitpod/gitpod.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ RUN apt-get update --quiet && \
2323
add-apt-repository -y ppa:apptainer/ppa && \
2424
apt-get update --quiet && \
2525
apt-get install --quiet --yes apptainer && \
26-
wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
27-
bash Miniconda3-latest-Linux-x86_64.sh -b -p /opt/conda && \
28-
rm Miniconda3-latest-Linux-x86_64.sh && \
26+
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh && \
27+
bash Miniforge3-Linux-x86_64.sh -b -p /opt/conda && \
28+
rm Miniforge3-Linux-x86_64.sh && \
2929
apt-get clean && \
3030
rm -rf /var/lib/apt/lists/*
3131

0 commit comments

Comments
 (0)