Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nf-core/tools
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c7cede36eaf1f77e958386373d389ed2ed2f83d5
Choose a base ref
..
head repository: nf-core/tools
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 315b9a3536a1d7cdd661bafc3e7f0f1cc63051a7
Choose a head ref
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -8,6 +8,9 @@
- Remove `cleanup = true` from `test_full.config` in pipeline template
- Fix usage docs for specifying `params.yaml`
- Added stub in modules template ([#2277])(https://github.com/nf-core/tools/pull/2277) [Contributed by @nvnieuwk]
- Move registry definitions out of profile scope ([#2286])(https://github.com/nf-core/tools/pull/2286)
- Remove `aws_tower` profile ([#2287])(https://github.com/nf-core/tools/pull/2287)
- Fixed the Slack report to include the pipeline name ([#2291](https://github.com/nf-core/tools/pull/2291))

### Download

@@ -17,6 +20,7 @@
### Linting

- Warn if container access is denied ([#2270](https://github.com/nf-core/tools/pull/2270))
- Error if module container specification has quay.io as prefix when it shouldn't have ([#2278])(https://github.com/nf-core/tools/pull/2278/files)
- Detect if container is 'simple name' and try to contact quay.io server by default ([#2281](https://github.com/nf-core/tools/pull/2281))

### Modules
4 changes: 2 additions & 2 deletions nf_core/__init__.py
Original file line number Diff line number Diff line change
@@ -3,6 +3,6 @@
Shouldn't do much, as everything is under subcommands.
"""

import pkg_resources
import importlib.metadata as importlib_metadata

__version__ = pkg_resources.get_distribution("nf_core").version
__version__ = importlib_metadata.version(__name__)
Loading